diff options
author | 2024-08-30 00:30:04 +0000 | |
---|---|---|
committer | 2024-08-30 00:30:04 +0000 | |
commit | ad39060b463b869fcd7dc969e867aff75afc2773 (patch) | |
tree | 117fd3f8bd912936b14479c0fbf6a783fbce6248 /tests/activity/Android.bp | |
parent | 02a259011dec677fc7daaf98971cb9b012b7b737 (diff) |
Make java_sdk_library dependencies explicit
modules should specify the submodule of java_sdk_library that the module
actually depends on
Test: CI
Bug: 358613520
Change-Id: I9a90b1e47d5790230496c31e84e5d10f40b1ea70
Diffstat (limited to 'tests/activity/Android.bp')
-rw-r--r-- | tests/activity/Android.bp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/activity/Android.bp b/tests/activity/Android.bp index f69caf0e..e75fb603 100644 --- a/tests/activity/Android.bp +++ b/tests/activity/Android.bp @@ -27,9 +27,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", ], |