summaryrefslogtreecommitdiff
path: root/android/config.go
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2024-10-31 18:40:17 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-10-31 18:40:17 +0000
commitee0c3708497db9559d2eabc6235c6ca5e3eba4d7 (patch)
tree84afb9ee75f9711889333a51f7c40fce33b907f9 /android/config.go
parent316a90725b2aa1fa66570cbfdcd35a08ed5d3b6d (diff)
parent42816dccc1b2bbc58808c6d35ae81c62518c6cb7 (diff)
Merge "Introduce vintf_data module type" into main
Diffstat (limited to 'android/config.go')
-rw-r--r--android/config.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go
index 1739b01e1..8c4b5cd3d 100644
--- a/android/config.go
+++ b/android/config.go
@@ -2234,3 +2234,19 @@ func (c *config) BoardAvbSystemAddHashtreeFooterArgs() []string {
func (c Config) InstallApexSystemServerDexpreoptSamePartition() bool {
return c.config.productVariables.GetBuildFlagBool("RELEASE_INSTALL_APEX_SYSTEMSERVER_DEXPREOPT_SAME_PARTITION")
}
+
+func (c *config) DeviceMatrixFile() []string {
+ return c.productVariables.DeviceMatrixFile
+}
+
+func (c *config) ProductManifestFiles() []string {
+ return c.productVariables.ProductManifestFiles
+}
+
+func (c *config) SystemManifestFile() []string {
+ return c.productVariables.SystemManifestFile
+}
+
+func (c *config) SystemExtManifestFiles() []string {
+ return c.productVariables.SystemExtManifestFiles
+}