diff options
| author | 2016-08-07 21:17:54 -0700 | |
|---|---|---|
| committer | 2016-08-11 13:20:16 -0700 | |
| commit | e8a67a7c587ab0c5a84dd6eb56820a67c8eddd2e (patch) | |
| tree | 71d3e2f2c93c390991caf49975dfc34a45c09e8c /android/variable.go | |
| parent | 1317701114ee164d244ceefdfd42a12cd417ae33 (diff) | |
Make BottomUpMutators parallel
Append .Parallel() to all of the RegisterBottomUpMutator calls to tell
Blueprint it can run them in parallel.
Test: identical build.ninja, passes race detector
Change-Id: I969a0689522d4cba7c8ff51e2aa00fe2fd338a89
Diffstat (limited to 'android/variable.go')
| -rw-r--r-- | android/variable.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/variable.go b/android/variable.go index d2dc5b92c..531125d56 100644 --- a/android/variable.go +++ b/android/variable.go @@ -24,7 +24,7 @@ import ( ) func init() { - RegisterBottomUpMutator("variable", variableMutator) + RegisterBottomUpMutator("variable", variableMutator).Parallel() } type variableProperties struct { |