Merge "rust modules respects the installable property" am: f7ff81ca95

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

Change-Id: I3b594ac2c663dd772c3f385c5fe7727d42d82357
This commit is contained in:
Treehugger Robot
2021-10-01 02:18:30 +00:00
committed by Automerger Merge Worker

View File

@@ -663,7 +663,7 @@ func (mod *Module) CoverageFiles() android.Paths {
} }
func (mod *Module) installable(apexInfo android.ApexInfo) bool { func (mod *Module) installable(apexInfo android.ApexInfo) bool {
if !mod.EverInstallable() { if !proptools.BoolDefault(mod.Installable(), mod.EverInstallable()) {
return false return false
} }