diff options
author | 2024-12-03 23:06:34 +0000 | |
---|---|---|
committer | 2024-12-03 23:06:34 +0000 | |
commit | be90fc9fa5750f38f025dc0dcd2627981cdfc4ee (patch) | |
tree | df0c0c828137c1a99379632466741aaba529b742 /apex/apex.go | |
parent | 7e60122dee83da5d7cd7a4f43c0e68d21cfe58f5 (diff) |
Change verifyNativeImplementationLibs to use ModuleProxy.
Bug: 377723687
Test: Unit tests and compare the ninja and mk files generated.
Change-Id: Ia149faa118dd5a089291c94caf279f3ef0a093f0
Diffstat (limited to 'apex/apex.go')
-rw-r--r-- | apex/apex.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/apex.go b/apex/apex.go index 67c0a1990..f93413456 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -2885,7 +2885,7 @@ func (a *apexBundle) verifyNativeImplementationLibs(ctx android.ModuleContext) { } var appEmbeddedJNILibs android.Paths - ctx.VisitDirectDeps(func(dep android.Module) { + ctx.VisitDirectDepsProxy(func(dep android.ModuleProxy) { tag := ctx.OtherModuleDependencyTag(dep) if !checkApexTag(tag) { return |