diff options
author | 2024-10-09 15:29:27 -0700 | |
---|---|---|
committer | 2024-10-10 11:59:52 -0700 | |
commit | 8a9628098bbed62f3af13021b434238308adc7c1 (patch) | |
tree | 4163340a4c49f0c0db0d9aa145c4fc99f7693e2a /rust/rust.go | |
parent | 2d2e68ffaf29af085201f5200db5938d6040b79c (diff) |
Remove MutatorHandle.Parallel()
All mutators are parallel by default, remove the explicit Parallel()
calls.
Bug: 372540665
Test: all soong tests pass
Flag: EXEMPT refactor
Change-Id: I41e3a71bd13c75b7fceae91b1c4cfe678ab62df2
Diffstat (limited to 'rust/rust.go')
-rw-r--r-- | rust/rust.go | 4 |
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 { |