rust modules respects the installable property

So far, the property wasn't respected.

Bug: N/A
Test: m
Change-Id: Ie3b011250595f02c3ab315efbac6694df3e181e7
This commit is contained in:
Jiyong Park
2021-09-30 17:25:21 +09:00
parent 6f37dba455
commit 2811e07868

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
}