Merge "Add DevicePrefer32BitApps to Soong"

This commit is contained in:
Treehugger Robot 2018-10-03 03:05:08 +00:00 committed by Gerrit Code Review
commit 72cf0a8479
2 changed files with 5 additions and 0 deletions

View File

@ -576,6 +576,10 @@ func (c *config) Debuggable() bool {
return Bool(c.productVariables.Debuggable)
}
func (c *config) DevicePrefer32BitApps() bool {
return Bool(c.productVariables.DevicePrefer32BitApps)
}
func (c *config) DevicePrefer32BitExecutables() bool {
return Bool(c.productVariables.DevicePrefer32BitExecutables)
}

View File

@ -211,6 +211,7 @@ type productVariables struct {
CoveragePaths *[]string `json:",omitempty"`
CoverageExcludePaths *[]string `json:",omitempty"`
DevicePrefer32BitApps *bool `json:",omitempty"`
DevicePrefer32BitExecutables *bool `json:",omitempty"`
HostPrefer32BitExecutables *bool `json:",omitempty"`