summaryrefslogtreecommitdiff
path: root/android/namespace.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2024-10-10 22:32:21 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-10-10 22:32:21 +0000
commit004074db579a9e1abf07fe4c45f35d4d5247cac0 (patch)
treed92460b53feb6abc37aa85cf755dc35631208937 /android/namespace.go
parentfef73af257e936d9b6345ce30ad528c28bbccb98 (diff)
parent8a9628098bbed62f3af13021b434238308adc7c1 (diff)
Merge changes from topic "remove-non-parallel-mutator" into main
* changes: Remove MutatorHandle.Parallel() Fix TestFinalDepsPhase for parallel mutator
Diffstat (limited to 'android/namespace.go')
-rw-r--r--android/namespace.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/namespace.go b/android/namespace.go
index 866d12594..8b3ebc4d5 100644
--- a/android/namespace.go
+++ b/android/namespace.go
@@ -457,7 +457,7 @@ func NamespaceFactory() Module {
}
func RegisterNamespaceMutator(ctx RegisterMutatorsContext) {
- ctx.BottomUp("namespace_deps", namespaceMutator).Parallel().MutatesGlobalState()
+ ctx.BottomUp("namespace_deps", namespaceMutator).MutatesGlobalState()
}
func namespaceMutator(ctx BottomUpMutatorContext) {