aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/androidmk.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/android/androidmk.go b/android/androidmk.go
index 8f9f3bcd..aeb0aa52 100644
--- a/android/androidmk.go
+++ b/android/androidmk.go
@@ -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 {