Merge "Support override_rs_driver product variable" am: 2030a8cbcb

am: 9b9be28895

Change-Id: I91baed8b17110c35718ece5a95195b6e644fe793
This commit is contained in:
Colin Cross
2017-05-06 00:35:24 +00:00
committed by android-build-merger

View File

@@ -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
@@ -141,6 +145,8 @@ type productVariables struct {
ArtUseReadBarrier *bool `json:",omitempty"`
BtConfigIncludeDir *string `json:",omitempty"`
Override_rs_driver *string `json:",omitempty"`
}
func boolPtr(v bool) *bool {