Use debug mode when running R8 for eng builds.

Bug: 119601874
Test: Built for different variants.
Change-Id: I2250587eb3e457ca15265eb9f8359872e9b08363
This commit is contained in:
Jaewoong Jung
2018-11-29 15:08:44 -08:00
parent a9e5a40bb8
commit 1d6eb68731
2 changed files with 9 additions and 0 deletions

View File

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