Merge "rust modules respects the installable property"

This commit is contained in:
Treehugger Robot 2021-10-01 01:59:08 +00:00 committed by Gerrit Code Review
commit f7ff81ca95

View file

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