summaryrefslogtreecommitdiff
path: root/android/apex_contributions.go
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2024-05-08 22:28:05 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-05-08 22:28:05 +0000
commit7eaf503cfd42a70f625405bb4a4b67eb5de47c8d (patch)
tree538010b7947258f555d652310530ccf43905ce72 /android/apex_contributions.go
parent2aff024c189e5217b102d7b307fddc6c303b1c38 (diff)
parenta3a05460b478ed59c527dec1c8b2efa61ce9c53c (diff)
Merge "Revert^2 "Remove compilation actions from java sdk library"" into main
Diffstat (limited to 'android/apex_contributions.go')
-rw-r--r--android/apex_contributions.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/android/apex_contributions.go b/android/apex_contributions.go
index f5c50d386..91549e5d8 100644
--- a/android/apex_contributions.go
+++ b/android/apex_contributions.go
@@ -101,12 +101,12 @@ type apexContributionsDepTag struct {
}
var (
- acDepTag = apexContributionsDepTag{}
+ AcDepTag = apexContributionsDepTag{}
)
// Creates a dep to each selected apex_contributions
func (a *allApexContributions) DepsMutator(ctx BottomUpMutatorContext) {
- ctx.AddDependency(ctx.Module(), acDepTag, ctx.Config().AllApexContributions()...)
+ ctx.AddDependency(ctx.Module(), AcDepTag, ctx.Config().AllApexContributions()...)
}
// Set PrebuiltSelectionInfoProvider in post deps phase
@@ -131,7 +131,7 @@ func (a *allApexContributions) SetPrebuiltSelectionInfoProvider(ctx BaseModuleCo
// (e.g. shiba and shiba_fullmte)
// Eventually these product variants will have their own release config maps.
if !proptools.Bool(ctx.Config().BuildIgnoreApexContributionContents()) {
- ctx.VisitDirectDepsWithTag(acDepTag, func(child Module) {
+ ctx.VisitDirectDepsWithTag(AcDepTag, func(child Module) {
if m, ok := child.(*apexContributions); ok {
addContentsToProvider(&p, m)
} else {