diff options
Diffstat (limited to 'android/androidmk.go')
-rw-r--r-- | android/androidmk.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/android/androidmk.go b/android/androidmk.go index a24d7bc2..9f711bf5 100644 --- a/android/androidmk.go +++ b/android/androidmk.go @@ -242,6 +242,9 @@ func translateAndroidMkModule(ctx SingletonContext, w io.Writer, mod blueprint.M if Bool(amod.commonProperties.Product_specific) { fmt.Fprintln(&data.preamble, "LOCAL_PRODUCT_MODULE := true") } + if Bool(amod.commonProperties.ProductServices_specific) { + fmt.Fprintln(&data.preamble, "LOCAL_PRODUCT_SERVICES_MODULE := true") + } if amod.commonProperties.Owner != nil { fmt.Fprintln(&data.preamble, "LOCAL_MODULE_OWNER :=", *amod.commonProperties.Owner) } |