diff options
author | 2024-08-30 00:29:12 +0000 | |
---|---|---|
committer | 2024-09-11 00:15:14 +0000 | |
commit | 1e37ed3b647a646557138cd886c0d9c867ce9bde (patch) | |
tree | 791ce6a66cbd6728520db697dbdb3bde1f708326 /tests/InputScreenshotTest | |
parent | daa8f946b7a1e90dc3b1776536379eee760d3e85 (diff) |
Make java_sdk_library dependencies explicit
modules should specify the submodule of java_sdk_library that the module
actually depends on
Test: CI
Flag: EXEMPT build dependency cleanup
Bug: 358613520
Merged-In: I80af0b9efa88c668306f0ff1d51491a8180dc57f
Change-Id: I80af0b9efa88c668306f0ff1d51491a8180dc57f
Diffstat (limited to 'tests/InputScreenshotTest')
-rw-r--r-- | tests/InputScreenshotTest/Android.bp | 4 | ||||
-rw-r--r-- | tests/InputScreenshotTest/robotests/Android.bp | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/InputScreenshotTest/Android.bp b/tests/InputScreenshotTest/Android.bp index 927b101012c5..12ab550c2da2 100644 --- a/tests/InputScreenshotTest/Android.bp +++ b/tests/InputScreenshotTest/Android.bp @@ -67,8 +67,8 @@ android_test { "truth", ], libs: [ - "android.test.mock", - "android.test.base", + "android.test.mock.stubs.system", + "android.test.base.stubs.system", ], test_suites: ["device-tests"], compile_multilib: "both", diff --git a/tests/InputScreenshotTest/robotests/Android.bp b/tests/InputScreenshotTest/robotests/Android.bp index d63fd69ae4d9..b2414a85c095 100644 --- a/tests/InputScreenshotTest/robotests/Android.bp +++ b/tests/InputScreenshotTest/robotests/Android.bp @@ -61,9 +61,9 @@ android_robolectric_test { "uiautomator-helpers", ], 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", "truth", ], upstream: true, |