summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
author Jihoon Kang <jihoonkang@google.com> 2024-08-30 19:21:52 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2024-08-30 19:21:52 +0000
commitac6d654c191b5537ee83749aaea79ba8ac8df896 (patch)
tree752f8ce7d99edc5f42757e3a737c27b195bf2bdd /tests
parentf760ae087ee9f3dae6b7533d5d4c2525103fd1cf (diff)
parent4318f4a210f0c65749e570ec0a641a67dc3d8c12 (diff)
Make java_sdk_library dependencies explicit am: ad39060b46 am: 4318f4a210
Original change: https://android-review.googlesource.com/c/platform/packages/modules/IntentResolver/+/3250832 Change-Id: I04b9d386c6694958626d06bf278d50d1aa2f7db5 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/activity/Android.bp6
-rw-r--r--tests/integration/Android.bp4
-rw-r--r--tests/shared/Android.bp2
-rw-r--r--tests/unit/Android.bp6
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 aa1be2e0..850c447f 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",
"flag-junit",