diff options
author | 2025-02-25 00:54:20 +0000 | |
---|---|---|
committer | 2025-02-25 19:05:48 +0000 | |
commit | 95cef3a35a7dda90447e94b6bd1370043ee2cedb (patch) | |
tree | 3bd39af4a269da4cd68ec0328d999986be105748 /android/module.go | |
parent | 2a815b6d8ea8f29b54f780b1219c28b0c8c977aa (diff) |
Convert ndkSingleton, apexDepsInfoSingleton, allTeamsSingleton,
apexPrebuiltInfo to use ModuleProxy.
Bug: 377723687
Test: Unit tests and compare the ninja and mk files generated.
Change-Id: I77b05e8b54843bfa8b91376a6796c2b5c69be3c1
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/android/module.go b/android/module.go index 984f0372a..d19648124 100644 --- a/android/module.go +++ b/android/module.go @@ -1940,6 +1940,7 @@ type CommonModuleInfo struct { VintfFragmentModuleNames []string Dists []Dist ExportedToMake bool + Team string } type ApiLevelOrPlatform struct { @@ -2300,6 +2301,7 @@ func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) VintfFragmentModuleNames: m.module.VintfFragmentModuleNames(ctx), Dists: m.Dists(), ExportedToMake: m.ExportedToMake(), + Team: m.Team(), } if mm, ok := m.module.(interface { MinSdkVersion(ctx EarlyModuleContext) ApiLevel |