diff options
author | 2023-04-24 17:54:19 +0000 | |
---|---|---|
committer | 2023-05-22 07:13:07 +0000 | |
commit | d0f9520414c41f3c78a0147c1b56b86672151686 (patch) | |
tree | a4dc50a7998041de87e99b3d96d80fa5e3f7a759 /java/testing.go | |
parent | d056a91b82c3b9fd3a5273069d98b2a3f5acf682 (diff) |
Add additional java_api_library testing modules
This change adds android-non-updatable.stub.* java_api_library
modules to java testing.
Test: none
Change-Id: I10110a21cc61905995803dfc1d27484358019807
Diffstat (limited to 'java/testing.go')
-rw-r--r-- | java/testing.go | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/java/testing.go b/java/testing.go index ffc3a086f..3a238d76f 100644 --- a/java/testing.go +++ b/java/testing.go @@ -400,16 +400,20 @@ func gatherRequiredDepsForTest() string { } extraApiLibraryModules := map[string]string{ - "android_stubs_current.from-text": "api/current.txt", - "android_system_stubs_current.from-text": "api/system-current.txt", - "android_test_stubs_current.from-text": "api/test-current.txt", - "android_module_lib_stubs_current.from-text": "api/module-lib-current.txt", - "android_module_lib_stubs_current_full.from-text": "api/module-lib-current.txt", - "android_system_server_stubs_current.from-text": "api/system-server-current.txt", - "core.current.stubs.from-text": "api/current.txt", - "legacy.core.platform.api.stubs.from-text": "api/current.txt", - "stable.core.platform.api.stubs.from-text": "api/current.txt", - "core-lambda-stubs.from-text": "api/current.txt", + "android_stubs_current.from-text": "api/current.txt", + "android_system_stubs_current.from-text": "api/system-current.txt", + "android_test_stubs_current.from-text": "api/test-current.txt", + "android_module_lib_stubs_current.from-text": "api/module-lib-current.txt", + "android_module_lib_stubs_current_full.from-text": "api/module-lib-current.txt", + "android_system_server_stubs_current.from-text": "api/system-server-current.txt", + "core.current.stubs.from-text": "api/current.txt", + "legacy.core.platform.api.stubs.from-text": "api/current.txt", + "stable.core.platform.api.stubs.from-text": "api/current.txt", + "core-lambda-stubs.from-text": "api/current.txt", + "android-non-updatable.stubs.from-text": "api/current.txt", + "android-non-updatable.stubs.system.from-text": "api/system-current.txt", + "android-non-updatable.stubs.test.from-text": "api/test-current.txt", + "android-non-updatable.stubs.module_lib.from-text": "api/module-lib-current.txt", } for libName, apiFile := range extraApiLibraryModules { |