Revert "Make some common properties overridden when used in defaults modules"

Bug: 68337468

Breaks HOST_PREFER_32BIT=true

This reverts commit 617016a6f2.

Change-Id: Ifb20f41cdf93dbfd73a3aac5b055e595e334350b
This commit is contained in:
Nicolas Geoffray
2017-11-01 09:32:53 +00:00
parent 617016a6f2
commit 5c3c768187
3 changed files with 11 additions and 11 deletions

View File

@@ -231,10 +231,10 @@ func translateAndroidMkModule(ctx blueprint.SingletonContext, w io.Writer, mod b
if len(amod.commonProperties.Init_rc) > 0 {
fmt.Fprintln(&data.preamble, "LOCAL_INIT_RC := ", strings.Join(amod.commonProperties.Init_rc, " "))
}
if Bool(amod.commonProperties.Proprietary) {
if amod.commonProperties.Proprietary {
fmt.Fprintln(&data.preamble, "LOCAL_PROPRIETARY_MODULE := true")
}
if Bool(amod.commonProperties.Vendor) {
if amod.commonProperties.Vendor {
fmt.Fprintln(&data.preamble, "LOCAL_VENDOR_MODULE := true")
}
if amod.commonProperties.Owner != nil {