Merge "Add DevicePrefer32BitApps to Soong"
This commit is contained in:
commit
72cf0a8479
2 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -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"`
|
||||
|
||||
|
|
Loading…
Reference in a new issue