From f0040f3f124531b215ba6265b521b5b379c32ce6 Mon Sep 17 00:00:00 2001 From: Yu Liu Date: Fri, 13 Dec 2024 22:47:54 +0000 Subject: Convert CombinedApis's GenerateAndroidBuildActions to use ModuleProxy. Bug: 377723687 Test: Unit tests and compare the ninja and mk files generated. Change-Id: I6fe92d788c9bbbe3b5b476d61c94e1105d1859b0 --- api/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api/api.go') diff --git a/api/api.go b/api/api.go index aa89c2450288..b8f30a242320 100644 --- a/api/api.go +++ b/api/api.go @@ -103,7 +103,7 @@ func (a *CombinedApis) DepsMutator(ctx android.BottomUpMutatorContext) { func (a *CombinedApis) GenerateAndroidBuildActions(ctx android.ModuleContext) { ctx.WalkDeps(func(child, parent android.Module) bool { - if _, ok := child.(java.AndroidLibraryDependency); ok && child.Name() != "framework-res" { + if _, ok := android.OtherModuleProvider(ctx, child, java.AndroidLibraryInfoProvider); ok && child.Name() != "framework-res" { // Stubs of BCP and SSCP libraries should not have any dependencies on apps // This check ensures that we do not run into circular dependencies when UNBUNDLED_BUILD_TARGET_SDK_WITH_API_FINGERPRINT=true ctx.ModuleErrorf( -- cgit v1.2.3-59-g8ed1b