diff options
| author | Bob Badour <bbadour@google.com> | 2021-02-03 19:01:10 -0800 |
|---|---|---|
| committer | Bob Badour <bbadour@google.com> | 2021-02-05 01:28:36 -0800 |
| commit | 6f0eda2a702823ae2270d74d9fa53b22fe2c31da (patch) | |
| tree | ec5fd1e0d576c6d83779143757c45c8c788231c6 | |
| parent | a2309f72b8f500355d8515f4150c18c3a3aa452b (diff) | |
| download | platform_test_app_compat_csuite-6f0eda2a702823ae2270d74d9fa53b22fe2c31da.tar.gz platform_test_app_compat_csuite-6f0eda2a702823ae2270d74d9fa53b22fe2c31da.tar.bz2 platform_test_app_compat_csuite-6f0eda2a702823ae2270d74d9fa53b22fe2c31da.zip | |
[LSC] Add LOCAL_LICENSE_KINDS to test/app_compat/csuite
Added SPDX-license-identifier-Apache-2.0 to:
Android.bp
harness/Android.bp
instrumentation/launch/Android.bp
integration_tests/Android.bp
integration_tests/csuite_crash_on_launch_test_app/Android.bp
integration_tests/csuite_no_crash_test_app/Android.bp
pylib/Android.bp
tools/csuite-tradefed/Android.bp
tools/script/Android.bp
Bug: 68860345
Bug: 151177513
Bug: 151953481
Test: m all
Exempt-From-Owner-Approval: janitorial work
Change-Id: Ifcd3d489a8bb607dd80c2aade9f50ac8599794c9
| -rw-r--r-- | Android.bp | 4 | ||||
| -rw-r--r-- | harness/Android.bp | 4 | ||||
| -rw-r--r-- | instrumentation/launch/Android.bp | 4 | ||||
| -rw-r--r-- | integration_tests/Android.bp | 4 | ||||
| -rw-r--r-- | integration_tests/csuite_crash_on_launch_test_app/Android.bp | 4 | ||||
| -rw-r--r-- | integration_tests/csuite_no_crash_test_app/Android.bp | 4 | ||||
| -rw-r--r-- | pylib/Android.bp | 4 | ||||
| -rw-r--r-- | tools/csuite-tradefed/Android.bp | 4 | ||||
| -rw-r--r-- | tools/script/Android.bp | 4 |
9 files changed, 36 insertions, 0 deletions
@@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + python_defaults { name: "csuite_python_defaults", version: { diff --git a/harness/Android.bp b/harness/Android.bp index 66f123b..9298db8 100644 --- a/harness/Android.bp +++ b/harness/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + java_library_host { name: "csuite-harness", srcs: [ diff --git a/instrumentation/launch/Android.bp b/instrumentation/launch/Android.bp index f090bb9..1b45c1a 100644 --- a/instrumentation/launch/Android.bp +++ b/instrumentation/launch/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + android_test_helper_app { name: "csuite-launch-instrumentation", static_libs: ["androidx.test.rules"], diff --git a/integration_tests/Android.bp b/integration_tests/Android.bp index 96f2c1f..876afda 100644 --- a/integration_tests/Android.bp +++ b/integration_tests/Android.bp @@ -22,6 +22,10 @@ // attribute. Second, we're accessing jars using a path relative to a known // artifact location instead of using the Soong 'location' feature. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + java_genrule_host { name: "csuite_standalone_zip", cmd: "ANDROID_CSUITE=$(genDir)/android-csuite && " + diff --git a/integration_tests/csuite_crash_on_launch_test_app/Android.bp b/integration_tests/csuite_crash_on_launch_test_app/Android.bp index 2ea7c5a..ec0022b 100644 --- a/integration_tests/csuite_crash_on_launch_test_app/Android.bp +++ b/integration_tests/csuite_crash_on_launch_test_app/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + android_test_helper_app { name: "csuite_crash_on_launch_test_app", srcs: [ diff --git a/integration_tests/csuite_no_crash_test_app/Android.bp b/integration_tests/csuite_no_crash_test_app/Android.bp index 2c11790..e9ee60a 100644 --- a/integration_tests/csuite_no_crash_test_app/Android.bp +++ b/integration_tests/csuite_no_crash_test_app/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + android_test_helper_app { name: "csuite_no_crash_test_app", srcs: [ diff --git a/pylib/Android.bp b/pylib/Android.bp index 92bf41a..319060f 100644 --- a/pylib/Android.bp +++ b/pylib/Android.bp @@ -27,6 +27,10 @@ // that target since, although compatible, the arch variants (x86_64 and // common) don't exactly match. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + python_library_host { name: "csuite_test", srcs: [ diff --git a/tools/csuite-tradefed/Android.bp b/tools/csuite-tradefed/Android.bp index 82d959e..2e7ee9a 100644 --- a/tools/csuite-tradefed/Android.bp +++ b/tools/csuite-tradefed/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + tradefed_binary_host { name: "csuite-tradefed", wrapper: "src/scripts/csuite-tradefed", diff --git a/tools/script/Android.bp b/tools/script/Android.bp index 3f752fb..6d7ca52 100644 --- a/tools/script/Android.bp +++ b/tools/script/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + python_binary_host { name: "csuite_generate_module", main: "generate_module.py", |
