diff options
author | 2024-11-19 11:29:46 -0800 | |
---|---|---|
committer | 2024-11-20 11:17:30 -0800 | |
commit | f6978173131245bac18297e4ee5d43d74ffc9ed5 (patch) | |
tree | 96bc52d625b356e3ed45076a55c547de79cf71b0 /apex/prebuilt.go | |
parent | bb674a1970459b82246e1815b085d6c192c68086 (diff) |
Remove InApexModules
The only use of InApexModules was a container check that verified that
apexes didn't depend on non-stubs modules from outside the apex. Switch
it to InApexVariants for now, although that will also need to be removed.
Bug: 372543712
Test: builds
Change-Id: I822e982e3e8767dc251c8341de9f40373982c6ed
Diffstat (limited to 'apex/prebuilt.go')
-rw-r--r-- | apex/prebuilt.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apex/prebuilt.go b/apex/prebuilt.go index 2bef0cccf..f93eada8b 100644 --- a/apex/prebuilt.go +++ b/apex/prebuilt.go @@ -356,7 +356,6 @@ func (p *prebuiltCommon) apexInfoMutator(mctx android.TopDownMutatorContext) { apexInfo := android.ApexInfo{ ApexVariationName: apexVariationName, InApexVariants: []string{apexVariationName}, - InApexModules: []string{p.BaseModuleName()}, // BaseModuleName() to avoid the prebuilt_ prefix. ForPrebuiltApex: true, } |