Merge "Ignore cc.Module.HideFromMake when producing flattened apex Android.mk entries" am: a5b1ea248f

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1691266

Change-Id: I719b1c8cbdf79d279c3e8d0d8c3d5e262388495b
This commit is contained in:
Colin Cross
2021-04-30 14:58:21 +00:00
committed by Automerger Merge Worker

View File

@@ -118,10 +118,6 @@ func (a *apexBundle) androidMkForFiles(w io.Writer, apexBundleName, apexName, mo
seenDataOutPaths := make(map[string]bool)
for _, fi := range a.filesInfo {
if ccMod, ok := fi.module.(*cc.Module); ok && ccMod.Properties.HideFromMake {
continue
}
linkToSystemLib := a.linkToSystemLib && fi.transitiveDep && fi.availableToPlatform()
moduleName := a.fullModuleName(apexBundleName, &fi)