Merge "Add additional java_api_library module to java testing" am: d1a038c183

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2541410

Change-Id: Ie790bfc9e1aa042051b48efa9f08422332a033a3
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Jihoon Kang
2023-04-18 04:06:09 +00:00
committed by Automerger Merge Worker

View File

@@ -389,15 +389,16 @@ func gatherRequiredDepsForTest() string {
} }
extraApiLibraryModules := map[string]string{ extraApiLibraryModules := map[string]string{
"android_stubs_current.from-text": "api/current.txt", "android_stubs_current.from-text": "api/current.txt",
"android_system_stubs_current.from-text": "api/system-current.txt", "android_system_stubs_current.from-text": "api/system-current.txt",
"android_test_stubs_current.from-text": "api/test-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.from-text": "api/module-lib-current.txt",
"android_system_server_stubs_current.from-text": "api/system-server-current.txt", "android_module_lib_stubs_current_full.from-text": "api/module-lib-current.txt",
"core.current.stubs.from-text": "api/current.txt", "android_system_server_stubs_current.from-text": "api/system-server-current.txt",
"legacy.core.platform.api.stubs.from-text": "api/current.txt", "core.current.stubs.from-text": "api/current.txt",
"stable.core.platform.api.stubs.from-text": "api/current.txt", "legacy.core.platform.api.stubs.from-text": "api/current.txt",
"core-lambda-stubs.from-text": "api/current.txt", "stable.core.platform.api.stubs.from-text": "api/current.txt",
"core-lambda-stubs.from-text": "api/current.txt",
} }
for libName, apiFile := range extraApiLibraryModules { for libName, apiFile := range extraApiLibraryModules {