diff options
author | 2024-01-10 23:42:36 +0000 | |
---|---|---|
committer | 2024-01-24 23:45:12 +0000 | |
commit | b509938e4f2a4bf64d2eae323a489739b7344b2f (patch) | |
tree | a7c094e53880ba3465be200dcc81c047cdced9e2 /android/module.go | |
parent | dbc88dc4d054872a5e54fd9d23e1026ed6553bdc (diff) |
Propagate AconfigFiles in ModuleBase.
Aconfig file dependencies are module-independent, and properly part of
ModuleBase.
Bug: b/308625757
Test: manual
Change-Id: I38c5907d1671cc69bb198345201316ae781fdc9f
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/android/module.go b/android/module.go index 6fd8657ff..5c7bbbf2b 100644 --- a/android/module.go +++ b/android/module.go @@ -1777,6 +1777,11 @@ func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) return } + aconfigUpdateAndroidBuildActions(ctx) + if ctx.Failed() { + return + } + // Create the set of tagged dist files after calling GenerateAndroidBuildActions // as GenerateTaggedDistFiles() calls OutputFiles(tag) and so relies on the // output paths being set which must be done before or during |