diff options
author | 2023-12-19 19:01:57 +0000 | |
---|---|---|
committer | 2023-12-19 19:34:00 +0000 | |
commit | aa005ae080b4837c42ff8174ee8300f0dff9628e (patch) | |
tree | b6ab2c15fd7ea7199e563b5d3dc0c274b4ef7466 /apex/apex.go | |
parent | 349ef8750509e0eb3fb026df2e481f970652b069 (diff) |
move CollectDependencyAconfigFiles to android
This needs to be called by some modules in android.
Bug: 308625757
Test: manual
Change-Id: I389fcfd88a3f4bd85a9218fdd4dd66d8a239bb67
Diffstat (limited to 'apex/apex.go')
-rw-r--r-- | apex/apex.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apex/apex.go b/apex/apex.go index 56559b16b..fe3f5a8e1 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -24,7 +24,6 @@ import ( "sort" "strings" - "android/soong/aconfig" "github.com/google/blueprint" "github.com/google/blueprint/proptools" @@ -2272,7 +2271,7 @@ func (a *apexBundle) depVisitor(vctx *visitorContext, ctx android.ModuleContext, } func addAconfigFiles(vctx *visitorContext, ctx android.ModuleContext, module blueprint.Module) { - dep, _ := android.OtherModuleProvider(ctx, module, aconfig.TransitiveDeclarationsInfoProvider) + dep, _ := android.OtherModuleProvider(ctx, module, android.AconfigTransitiveDeclarationsInfoProvider) if len(dep.AconfigFiles) > 0 && dep.AconfigFiles[ctx.ModuleName()] != nil { vctx.aconfigFiles = append(vctx.aconfigFiles, dep.AconfigFiles[ctx.ModuleName()]...) } |