aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-05-06 00:50:00 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-05-06 00:50:00 +0000
commit4ed57d5a470c3d3570fb3c43870940f8f7c928a8 (patch)
treeec69ccbdc3f8670cdc06dbd72356fa757c37cd15 /android
parentee35712b98aa982cbfd969acd61a6bfa924275ea (diff)
parent00b7cd4810551b02fe59bf9caa897a3c5c685a3c (diff)
downloadbuild_soong-4ed57d5a470c3d3570fb3c43870940f8f7c928a8.tar.gz
build_soong-4ed57d5a470c3d3570fb3c43870940f8f7c928a8.tar.bz2
build_soong-4ed57d5a470c3d3570fb3c43870940f8f7c928a8.zip
Merge "Support override_rs_driver product variable" am: 2030a8cbcb am: 9b9be28895
am: 00b7cd4810 Change-Id: I05da4da322741dc6704ad7baa1d5d39766821666
Diffstat (limited to 'android')
-rw-r--r--android/variable.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go
index 6a310737..d822b0a1 100644
--- a/android/variable.go
+++ b/android/variable.go
@@ -62,6 +62,10 @@ type variableProperties struct {
Cflags []string
}
+ Override_rs_driver struct {
+ Cflags []string
+ }
+
// debuggable is true for eng and userdebug builds, and can be used to turn on additional
// debugging features that don't significantly impact runtime behavior. userdebug builds
// are used for dogfooding and performance testing, and should be as similar to user builds
@@ -142,6 +146,8 @@ type productVariables struct {
ArtUseReadBarrier *bool `json:",omitempty"`
BtConfigIncludeDir *string `json:",omitempty"`
+
+ Override_rs_driver *string `json:",omitempty"`
}
func boolPtr(v bool) *bool {