Merge "Add ABFS (Android Build Filesystem) configuration option to Soong" into main

This commit is contained in:
Taylor Santiago
2024-07-25 21:04:06 +00:00
committed by Gerrit Code Review
9 changed files with 75 additions and 4 deletions

View File

@@ -1195,6 +1195,10 @@ func (c *config) UseGoma() bool {
return Bool(c.productVariables.UseGoma)
}
func (c *config) UseABFS() bool {
return Bool(c.productVariables.UseABFS)
}
func (c *config) UseRBE() bool {
return Bool(c.productVariables.UseRBE)
}

View File

@@ -294,6 +294,7 @@ type ProductVariables struct {
HostStaticBinaries *bool `json:",omitempty"`
Binder32bit *bool `json:",omitempty"`
UseGoma *bool `json:",omitempty"`
UseABFS *bool `json:",omitempty"`
UseRBE *bool `json:",omitempty"`
UseRBEJAVAC *bool `json:",omitempty"`
UseRBER8 *bool `json:",omitempty"`