Import/Export LOCAL_PROPRIETARY_MODULE am: 7ed1ae3fa4
am: dbd80c2181
Change-Id: I4b4e6c95dcf33aae9dc7a775d0521f24dd97c433
This commit is contained in:
commit
7288a87372
2 changed files with 4 additions and 0 deletions
|
@ -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 {
|
||||
|
|
|
@ -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},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue