Merge "Support trimmed variant build in soong"

This commit is contained in:
Dennis Shen
2023-01-27 13:11:50 +00:00
committed by Gerrit Code Review
4 changed files with 105 additions and 1 deletions

View File

@@ -1494,6 +1494,10 @@ func (c *config) ApexCompressionEnabled() bool {
return Bool(c.productVariables.CompressedApex) && !c.UnbundledBuildApps()
}
func (c *config) ApexTrimEnabled() bool {
return Bool(c.productVariables.TrimmedApex)
}
func (c *config) EnforceSystemCertificate() bool {
return Bool(c.productVariables.EnforceSystemCertificate)
}