diff options
author | 2024-11-01 03:08:47 +0000 | |
---|---|---|
committer | 2024-11-01 07:11:46 +0000 | |
commit | 7ab86600759c0f5c4e419e5c65c4f6bd726e3ec4 (patch) | |
tree | 55efb450f75ba7b63f0318014d02847b4cb8f714 /android/config.go | |
parent | 3ab5fcd266917104f7425323f6b5c1b7c42cdf1a (diff) |
Enhance vintf_data to support vendor_manifest and odm_manifest
Add two new support type "vendor_manifest" and "odm_manifest" for
vintf_data module type.
Bug: 340427295
Test: m vendor_manifest
Change-Id: Ifce5b4c94ea6d5c4ec62584a533315af3d8496fe
Diffstat (limited to 'android/config.go')
-rw-r--r-- | android/config.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index 8c4b5cd3d..1ed6871f4 100644 --- a/android/config.go +++ b/android/config.go @@ -2250,3 +2250,11 @@ func (c *config) SystemManifestFile() []string { func (c *config) SystemExtManifestFiles() []string { return c.productVariables.SystemExtManifestFiles } + +func (c *config) DeviceManifestFiles() []string { + return c.productVariables.DeviceManifestFiles +} + +func (c *config) OdmManifestFiles() []string { + return c.productVariables.OdmManifestFiles +} |