Import/Export LOCAL_PROPRIETARY_MODULE am: 7ed1ae3fa4

am: dbd80c2181

Change-Id: I4b4e6c95dcf33aae9dc7a775d0521f24dd97c433
This commit is contained in:
Dan Willemsen 2016-12-06 03:36:37 +00:00 committed by android-build-merger
commit 7288a87372
2 changed files with 4 additions and 0 deletions

View file

@ -224,6 +224,9 @@ func translateAndroidMkModule(ctx blueprint.SingletonContext, w io.Writer, mod b
if len(amod.commonProperties.Init_rc) > 0 {
fmt.Fprintln(w, "LOCAL_INIT_RC := ", strings.Join(amod.commonProperties.Init_rc, " "))
}
if amod.commonProperties.Proprietary {
fmt.Fprintln(w, "LOCAL_PROPRIETARY_MODULE := true")
}
}
if host {

View file

@ -78,6 +78,7 @@ var standardProperties = map[string]struct {
"LOCAL_PACK_MODULE_RELOCATIONS": {"pack_relocations", bpparser.BoolType},
"LOCAL_TIDY": {"tidy", bpparser.BoolType},
"LOCAL_USE_VNDK": {"use_vndk", bpparser.BoolType},
"LOCAL_PROPRIETARY_MODULE": {"proprietary", bpparser.BoolType},
"LOCAL_EXPORT_PACKAGE_RESOURCES": {"export_package_resources", bpparser.BoolType},
}