diff options
author | 2024-11-11 22:29:30 +0000 | |
---|---|---|
committer | 2024-11-12 03:48:18 +0000 | |
commit | ac483e081c08491ad5385d8e1de70c91121ac975 (patch) | |
tree | fac797fc656671a04c683b79fb5d18a5e38a75d4 /android/packaging.go | |
parent | d3228acdc8658e7bd9ef9662c425822ae55fdebf (diff) |
Use VisitDirectDepsProxy in aconfigUpdateAndroidBuildActions,
GatherPackagingSpecsWithFilter and checkClasspathFragments.
Bug: 377723687
Test: Check the ninja and mk files.
Change-Id: I620cb94a7304cf117142e5e88d8c2a16101dd9d6
Diffstat (limited to 'android/packaging.go')
-rw-r--r-- | android/packaging.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/packaging.go b/android/packaging.go index 98c85fa0c..c4cc6b98c 100644 --- a/android/packaging.go +++ b/android/packaging.go @@ -474,7 +474,7 @@ func (p *PackagingBase) GatherPackagingSpecsWithFilter(ctx ModuleContext, filter return false } - ctx.VisitDirectDeps(func(child Module) { + ctx.VisitDirectDepsProxy(func(child ModuleProxy) { depTag := ctx.OtherModuleDependencyTag(child) if pi, ok := depTag.(PackagingItem); !ok || !pi.IsPackagingItem() { return |