diff options
| author | 2024-08-15 09:07:38 +0000 | |
|---|---|---|
| committer | 2024-08-15 09:07:38 +0000 | |
| commit | 4483c0e7c07eb1775cff09db5bdcf2adbb0a94c4 (patch) | |
| tree | 3a2d24f36d7c7eff48cb1ae4545ec5c5bcedf455 /android/config.go | |
| parent | 61bd3d11e9abed7598f176b69c87638d091e9b04 (diff) | |
| parent | 66e555c8c7397991838cdd0d5d711d47288cf977 (diff) | |
Merge "Support BUILD_FRAMEWORK_COMPATIBILITY_MATRIX for soong" into main
Diffstat (limited to 'android/config.go')
| -rw-r--r-- | android/config.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index d13e5ab3f..d6d76a4a0 100644 --- a/android/config.go +++ b/android/config.go @@ -2053,3 +2053,19 @@ func (c *config) ProductPropFiles(ctx PathContext) Paths { func (c *config) EnableUffdGc() string { return String(c.productVariables.EnableUffdGc) } + +func (c *config) DeviceFrameworkCompatibilityMatrixFile() []string { + return c.productVariables.DeviceFrameworkCompatibilityMatrixFile +} + +func (c *config) DeviceProductCompatibilityMatrixFile() []string { + return c.productVariables.DeviceProductCompatibilityMatrixFile +} + +func (c *config) BoardAvbEnable() bool { + return Bool(c.productVariables.BoardAvbEnable) +} + +func (c *config) BoardAvbSystemAddHashtreeFooterArgs() []string { + return c.productVariables.BoardAvbSystemAddHashtreeFooterArgs +} |