summaryrefslogtreecommitdiff
path: root/apex/apex_singleton.go
diff options
context:
space:
mode:
author Yu Liu <yudiliu@google.com> 2025-03-10 13:41:49 -0700
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-03-10 13:41:49 -0700
commita369dc00143821fa7784d1bfa9d2986186b23742 (patch)
tree39c1e14bbff8b6c1d28f7543880240809d61220c /apex/apex_singleton.go
parentcfbdb0cec0d89feccb3cd8231a4095f673f74b29 (diff)
parentef9e63e775493bd73cb28917ad59e6b10e5506b5 (diff)
Merge "Rename CommonModuleInfoKey to be consistent with others." into main
Diffstat (limited to 'apex/apex_singleton.go')
-rw-r--r--apex/apex_singleton.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/apex_singleton.go b/apex/apex_singleton.go
index dabec4930..0bf4ba75b 100644
--- a/apex/apex_singleton.go
+++ b/apex/apex_singleton.go
@@ -164,7 +164,7 @@ func (a *apexPrebuiltInfo) GenerateBuildActions(ctx android.SingletonContext) {
prebuiltInfo, exists := android.OtherModuleProvider(ctx, m, android.PrebuiltInfoProvider)
// Use prebuiltInfoProvider to filter out non apex soong modules.
// Use HideFromMake to filter out the unselected variants of a specific apex.
- if exists && !android.OtherModuleProviderOrDefault(ctx, m, android.CommonModuleInfoKey).HideFromMake {
+ if exists && !android.OtherModuleProviderOrDefault(ctx, m, android.CommonModuleInfoProvider).HideFromMake {
prebuiltInfos = append(prebuiltInfos, prebuiltInfo)
}
})