summaryrefslogtreecommitdiff
path: root/apex/apex.go
diff options
context:
space:
mode:
author Kiyoung Kim <kiyoungkim@google.com> 2024-08-12 11:15:19 +0900
committer Kiyoung Kim <kiyoungkim@google.com> 2024-08-14 10:34:41 +0900
commitfaf6af31cdee65cfe4dbc26eafff4e9321c67b93 (patch)
tree7de70239d8c69111f8ea71b8491fcc055a0f39c0 /apex/apex.go
parentd0338d3565cf1efcf27d7932e4ed62faa09a6076 (diff)
Introduce vintf_fragment module type
Introduce a new vintf_fragment module type which handles vintf_fragment files within Soong. This will help process to move vintf_fragment handling logic from KATI to Soong. This change also introduces vintf_fragment_modules property to mark dependency with vintf_fragment modules. Bug: 322089980 Test: m nothing --no-skip-soong-tests passed Change-Id: I49607f42aeee3ded0ba7b078b903dc35f5d61637
Diffstat (limited to 'apex/apex.go')
-rw-r--r--apex/apex.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/apex/apex.go b/apex/apex.go
index fc0500aec..dd1c0b52e 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -2370,6 +2370,7 @@ func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
a.providePrebuiltInfo(ctx)
a.required = a.RequiredModuleNames(ctx)
+ a.required = append(a.required, a.VintfFragmentModuleNames(ctx)...)
a.setOutputFiles(ctx)
}