diff options
author | 2024-09-18 20:05:09 +0000 | |
---|---|---|
committer | 2024-09-18 20:05:09 +0000 | |
commit | dbb3ef9ac26fc355541007024cd5f1387a2c6cd1 (patch) | |
tree | 54701ab4a1e7d89f540343a617e0b2476c291b79 /apex/apex.go | |
parent | 411346c91940d4173348ba45c2eae77b2f7a7e83 (diff) | |
parent | da279cfba47a813407ccd33d07b42dcfc5581882 (diff) |
Merge "Convert trivial TopDown mutators to BottomUp" into main
Diffstat (limited to 'apex/apex.go')
-rw-r--r-- | apex/apex.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apex/apex.go b/apex/apex.go index c12d1e473..9e3f288ce 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -55,11 +55,10 @@ func registerApexBuildComponents(ctx android.RegistrationContext) { } func registerPreArchMutators(ctx android.RegisterMutatorsContext) { - ctx.TopDown("prebuilt_apex_module_creator", prebuiltApexModuleCreatorMutator).Parallel() + ctx.BottomUp("prebuilt_apex_module_creator", prebuiltApexModuleCreatorMutator).Parallel() } func RegisterPreDepsMutators(ctx android.RegisterMutatorsContext) { - ctx.TopDown("apex_vndk", apexVndkMutator).Parallel() ctx.BottomUp("apex_vndk_deps", apexVndkDepsMutator).Parallel() } |