Make system_server stubs consistent with other stubs am: bbd78556da am: 3763f773c8

Change-Id: Ic3050cd56c3747519110ff449748fcbadea501ca
This commit is contained in:
Anton Hansson
2020-03-20 12:34:16 +00:00
committed by Automerger Merge Worker
4 changed files with 5 additions and 5 deletions

View File

@@ -406,7 +406,7 @@ func decodeSdkDep(ctx android.EarlyModuleContext, sdkContext sdkContext) sdkDep
return toModule([]string{"android_module_lib_stubs_current"}, "framework-res", sdkFrameworkAidlPath(ctx))
case sdkSystemServer:
// TODO(146757305): provide .apk and .aidl that have more APIs for modules
return toModule([]string{"android_module_lib_stubs_current", "services-stubs"}, "framework-res", sdkFrameworkAidlPath(ctx))
return toModule([]string{"android_system_server_stubs_current"}, "framework-res", sdkFrameworkAidlPath(ctx))
default:
panic(fmt.Errorf("invalid sdk %q", sdkVersion.raw))
}