diff options
author | 2023-03-13 23:53:08 +0000 | |
---|---|---|
committer | 2023-03-30 21:22:34 +0000 | |
commit | d8b1dda042a6d7447cb40caa920d2479647b7bf9 (patch) | |
tree | a8cf1ec2280413da73454cd2dd491305829227c7 | |
parent | a59180a4ca8442179c0b76145e3d285240d12e69 (diff) |
Include module dependencies under `data`
Bug: 269138674
Test: Presubmit
Change-Id: Ibd1a18f6369396c4ae7b0263baab84f25c88ce06
-rw-r--r-- | apct-tests/perftests/multiuser/Android.bp | 5 | ||||
-rw-r--r-- | apct-tests/perftests/packagemanager/Android.bp | 5 | ||||
-rw-r--r-- | libs/hwui/Android.bp | 3 | ||||
-rw-r--r-- | native/android/tests/activitymanager/nativeTests/Android.bp | 3 | ||||
-rw-r--r-- | tests/FlickerTests/Android.bp | 3 | ||||
-rw-r--r-- | tests/OdmApps/Android.bp | 3 | ||||
-rw-r--r-- | tests/StagedInstallTest/Android.bp | 1 | ||||
-rw-r--r-- | tests/SystemMemoryTest/host/Android.bp | 3 |
8 files changed, 24 insertions, 2 deletions
diff --git a/apct-tests/perftests/multiuser/Android.bp b/apct-tests/perftests/multiuser/Android.bp index c967e51e16f9..45c6b8c5bf16 100644 --- a/apct-tests/perftests/multiuser/Android.bp +++ b/apct-tests/perftests/multiuser/Android.bp @@ -31,6 +31,9 @@ android_test { ], platform_apis: true, test_suites: ["device-tests"], - data: ["trace_configs/*"], + data: [ + ":MultiUserPerfDummyApp", + "trace_configs/*", + ], certificate: "platform", } diff --git a/apct-tests/perftests/packagemanager/Android.bp b/apct-tests/perftests/packagemanager/Android.bp index 81cec9111b88..e84aea1e7fac 100644 --- a/apct-tests/perftests/packagemanager/Android.bp +++ b/apct-tests/perftests/packagemanager/Android.bp @@ -33,7 +33,10 @@ android_test { test_suites: ["device-tests"], - data: [":perfetto_artifacts"], + data: [ + ":QueriesAll0", + ":perfetto_artifacts", + ], certificate: "platform", diff --git a/libs/hwui/Android.bp b/libs/hwui/Android.bp index 979a660d497f..60f77359bded 100644 --- a/libs/hwui/Android.bp +++ b/libs/hwui/Android.bp @@ -722,6 +722,9 @@ cc_test { "tests/unit/VectorDrawableTests.cpp", "tests/unit/WebViewFunctorManagerTests.cpp", ], + data: [ + ":hwuimicro", + ], } // ------------------------ diff --git a/native/android/tests/activitymanager/nativeTests/Android.bp b/native/android/tests/activitymanager/nativeTests/Android.bp index 528ac12c16b7..ebd753389843 100644 --- a/native/android/tests/activitymanager/nativeTests/Android.bp +++ b/native/android/tests/activitymanager/nativeTests/Android.bp @@ -45,4 +45,7 @@ cc_test { required: [ "UidImportanceHelperApp", ], + data: [ + ":UidImportanceHelperApp", + ], } diff --git a/tests/FlickerTests/Android.bp b/tests/FlickerTests/Android.bp index 7731e098d9f5..5301d674bacf 100644 --- a/tests/FlickerTests/Android.bp +++ b/tests/FlickerTests/Android.bp @@ -47,6 +47,9 @@ android_test { "launcher-aosp-tapl", "platform-test-annotations", ], + data: [ + ":FlickerTestApp", + ], } java_library { diff --git a/tests/OdmApps/Android.bp b/tests/OdmApps/Android.bp index de86498afd27..5f03aa27e6df 100644 --- a/tests/OdmApps/Android.bp +++ b/tests/OdmApps/Android.bp @@ -26,4 +26,7 @@ java_test_host { srcs: ["src/**/*.java"], libs: ["tradefed"], test_suites: ["device-tests"], + data: [ + ":TestOdmApp", + ], } diff --git a/tests/StagedInstallTest/Android.bp b/tests/StagedInstallTest/Android.bp index cce0dde9e6b9..38e74470e3d5 100644 --- a/tests/StagedInstallTest/Android.bp +++ b/tests/StagedInstallTest/Android.bp @@ -55,6 +55,7 @@ java_test_host { "cts-install-lib-host", ], data: [ + ":StagedInstallInternalTestApp", ":apex.apexd_test", ":com.android.apex.apkrollback.test_v1", ":StagedInstallTestApexV2", diff --git a/tests/SystemMemoryTest/host/Android.bp b/tests/SystemMemoryTest/host/Android.bp index 79744625b752..cc8bc45a7411 100644 --- a/tests/SystemMemoryTest/host/Android.bp +++ b/tests/SystemMemoryTest/host/Android.bp @@ -26,4 +26,7 @@ java_test_host { srcs: ["src/**/*.java"], libs: ["tradefed"], test_suites: ["general-tests"], + data: [ + ":SystemMemoryTestDevice", + ], } |