diff --git a/apct-tests/perftests/multiuser/Android.bp b/apct-tests/perftests/multiuser/Android.bp index c967e51e16f9a..45c6b8c5bf16a 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 81cec9111b881..e84aea1e7facf 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 3b129720c7274..5d79104200d99 100644 --- a/libs/hwui/Android.bp +++ b/libs/hwui/Android.bp @@ -738,6 +738,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 528ac12c16b70..ebd7533898435 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 fef5211633999..4ba538ed9d450 100644 --- a/tests/FlickerTests/Android.bp +++ b/tests/FlickerTests/Android.bp @@ -50,6 +50,9 @@ android_test { "platform-test-annotations", "wm-flicker-window-extensions", ], + data: [ + ":FlickerTestApp", + ], } java_library { diff --git a/tests/OdmApps/Android.bp b/tests/OdmApps/Android.bp index de86498afd271..5f03aa27e6dfe 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 ffde8c7d342c2..23efe548c82a1 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", ":com.android.apex.apkrollback.test_v2", diff --git a/tests/SystemMemoryTest/host/Android.bp b/tests/SystemMemoryTest/host/Android.bp index 79744625b7526..cc8bc45a7411d 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", + ], }