diff options
| author | 2024-09-26 18:30:59 +0000 | |
|---|---|---|
| committer | 2024-09-26 18:30:59 +0000 | |
| commit | ca7ba8764c9fec5b517ce2724f67936448819d3c (patch) | |
| tree | 43ab66a7a61c0b4498030b0dfe3db6dc542ea113 /apex/builder.go | |
| parent | ee48dd6f1e09b45f70d51e2bd88bb4b13c5eb14c (diff) | |
| parent | 4649b1fb6542ffb51c10c5f4ba2534d19a67253a (diff) | |
Merge "Allow WalkPayloadDeps to be called from mutators" into main am: 4649b1fb65
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/3283078
Change-Id: I4960bf8f833bff5351022aa1d53bf47776246f44
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'apex/builder.go')
| -rw-r--r-- | apex/builder.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/builder.go b/apex/builder.go index 7334aca92..244119bdd 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -1092,7 +1092,7 @@ func (a *apexBundle) buildApexDependencyInfo(ctx android.ModuleContext) { } depInfos := android.DepNameToDepInfoMap{} - a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool { + a.WalkPayloadDeps(ctx, func(ctx android.BaseModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool { if from.Name() == to.Name() { // This can happen for cc.reuseObjTag. We are not interested in tracking this. // As soon as the dependency graph crosses the APEX boundary, don't go further. |