summaryrefslogtreecommitdiff
path: root/rust/rust.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 /rust/rust.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 'rust/rust.go')
-rw-r--r--rust/rust.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/rust.go b/rust/rust.go
index a044a99dd..b22ebf7e7 100644
--- a/rust/rust.go
+++ b/rust/rust.go
@@ -47,11 +47,11 @@ func init() {
func registerPreDepsMutators(ctx android.RegisterMutatorsContext) {
ctx.Transition("rust_libraries", &libraryTransitionMutator{})
ctx.Transition("rust_stdlinkage", &libstdTransitionMutator{})
- ctx.BottomUp("rust_begin", BeginMutator).Parallel()
+ ctx.BottomUp("rust_begin", BeginMutator)
}
func registerPostDepsMutators(ctx android.RegisterMutatorsContext) {
- ctx.BottomUp("rust_sanitizers", rustSanitizerRuntimeMutator).Parallel()
+ ctx.BottomUp("rust_sanitizers", rustSanitizerRuntimeMutator)
}
type Flags struct {