diff options
Diffstat (limited to 'android/config.go')
| -rw-r--r-- | android/config.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index 7c6f7ce58..e7f1044e2 100644 --- a/android/config.go +++ b/android/config.go @@ -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) } @@ -2066,3 +2070,11 @@ func (c *config) UseDebugArt() bool { return Bool(c.productVariables.Eng) } + +func (c *config) SystemPropFiles(ctx PathContext) Paths { + return PathsForSource(ctx, c.productVariables.SystemPropFiles) +} + +func (c *config) EnableUffdGc() string { + return String(c.productVariables.EnableUffdGc) +} |