diff options
author | 2024-11-11 22:09:21 +0000 | |
---|---|---|
committer | 2024-11-11 22:09:21 +0000 | |
commit | b51cd7100365dad2e27366402e7aab55bae09a7d (patch) | |
tree | e70ed501190da0023c057557c86b5caab5d34b16 | |
parent | 6c1a6354afdd1098b311863c033b7e374ec98302 (diff) |
Revert "Use VisitDirectDepsProxy in GenerateBuildActions and remove the"
This reverts commit 6c1a6354afdd1098b311863c033b7e374ec98302.
Reason for revert: DroidMonitor: Potential culprit for http://b/378544804 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted.
Change-Id: I945c78e3ab4f321e2db99a3193cf35fd8b307073
-rw-r--r-- | android/module.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/android/module.go b/android/module.go index 3e71397bd..58ae885c8 100644 --- a/android/module.go +++ b/android/module.go @@ -1932,7 +1932,9 @@ func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) if m.Enabled(ctx) { // ensure all direct android.Module deps are enabled - ctx.VisitDirectDepsProxy(func(m ModuleProxy) {}) + ctx.VisitDirectDeps(func(m Module) { + ctx.validateAndroidModule(m, ctx.OtherModuleDependencyTag(m), ctx.baseModuleContext.strictVisitDeps) + }) if m.Device() { // Handle any init.rc and vintf fragment files requested by the module. All files installed by this |