diff options
author | 2024-08-30 18:39:20 +0000 | |
---|---|---|
committer | 2024-08-30 18:39:20 +0000 | |
commit | 4318f4a210f0c65749e570ec0a641a67dc3d8c12 (patch) | |
tree | 77bb1f73333d3d96b02c16d208d08874cecac433 /tests | |
parent | 2b67fc07e5fbc07c63cf7a0e6dfada3592ebf690 (diff) | |
parent | ad39060b463b869fcd7dc969e867aff75afc2773 (diff) |
Make java_sdk_library dependencies explicit am: ad39060b46
Original change: https://android-review.googlesource.com/c/platform/packages/modules/IntentResolver/+/3250832
Change-Id: I80ea53bc84cbeadcf51b9b15aa58daa9ba1e0b9d
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/activity/Android.bp | 6 | ||||
-rw-r--r-- | tests/integration/Android.bp | 4 | ||||
-rw-r--r-- | tests/shared/Android.bp | 2 | ||||
-rw-r--r-- | tests/unit/Android.bp | 6 |
4 files changed, 9 insertions, 9 deletions
diff --git a/tests/activity/Android.bp b/tests/activity/Android.bp index b718a430..9d673b4c 100644 --- a/tests/activity/Android.bp +++ b/tests/activity/Android.bp @@ -28,9 +28,9 @@ android_test { ], libs: [ - "android.test.runner", - "android.test.base", - "android.test.mock", + "android.test.runner.stubs", + "android.test.base.stubs", + "android.test.mock.stubs", "framework", "framework-res", ], diff --git a/tests/integration/Android.bp b/tests/integration/Android.bp index 4c8fc37a..c968c128 100644 --- a/tests/integration/Android.bp +++ b/tests/integration/Android.bp @@ -27,8 +27,8 @@ android_test { ], libs: [ - "android.test.runner", - "android.test.base", + "android.test.runner.stubs.system", + "android.test.base.stubs.system", "framework", ], resource_dirs: ["res"], diff --git a/tests/shared/Android.bp b/tests/shared/Android.bp index 041e1ccc..0f501c4f 100644 --- a/tests/shared/Android.bp +++ b/tests/shared/Android.bp @@ -25,7 +25,7 @@ java_library { "src/**/*.kt", ], libs: [ - "android.test.mock", + "android.test.mock.stubs.system", "framework", ], static_libs: [ diff --git a/tests/unit/Android.bp b/tests/unit/Android.bp index 1ae8d883..aec608f4 100644 --- a/tests/unit/Android.bp +++ b/tests/unit/Android.bp @@ -28,9 +28,9 @@ android_test { ], libs: [ - "android.test.runner", - "android.test.base", - "android.test.mock", + "android.test.runner.stubs.system", + "android.test.base.stubs.system", + "android.test.mock.stubs.system", "framework", "framework-res", ], |