aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-07-19 04:33:38 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-19 04:33:38 +0000
commit737623108df4f6acd74a36bf5c679ee8758f5c75 (patch)
treed74b2ea59d4a14466ab21f15af6d7b4cb1142e3c /android
parentd16117330cd6b0cf6daff171827a7dcc4268f004 (diff)
parent1651953ca53fceb425bd688eb31163bcca4f7313 (diff)
downloadbuild_soong-737623108df4f6acd74a36bf5c679ee8758f5c75.tar.gz
build_soong-737623108df4f6acd74a36bf5c679ee8758f5c75.tar.bz2
build_soong-737623108df4f6acd74a36bf5c679ee8758f5c75.zip
Merge "Switch `owner` to *string to disable concat"
am: 1651953ca5 Change-Id: I020d7e1ed733ccfc3035aca98fda0417771ecfda
Diffstat (limited to 'android')
-rw-r--r--android/androidmk.go4
-rw-r--r--android/module.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/android/androidmk.go b/android/androidmk.go
index b81cc2a6..dabefcca 100644
--- a/android/androidmk.go
+++ b/android/androidmk.go
@@ -246,8 +246,8 @@ func translateAndroidMkModule(ctx blueprint.SingletonContext, w io.Writer, mod b
if amod.commonProperties.Vendor {
fmt.Fprintln(w, "LOCAL_VENDOR_MODULE := true")
}
- if amod.commonProperties.Owner != "" {
- fmt.Fprintln(w, "LOCAL_MODULE_OWNER :=", amod.commonProperties.Owner)
+ if amod.commonProperties.Owner != nil {
+ fmt.Fprintln(w, "LOCAL_MODULE_OWNER :=", *amod.commonProperties.Owner)
}
}
diff --git a/android/module.go b/android/module.go
index fcb5aeef..3a3d1735 100644
--- a/android/module.go
+++ b/android/module.go
@@ -147,7 +147,7 @@ type commonProperties struct {
Proprietary bool
// vendor who owns this module
- Owner string
+ Owner *string
// whether this module is device specific and should be installed into /vendor
Vendor bool