summaryrefslogtreecommitdiff
path: root/rust/testing.go
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2019-11-20 13:35:50 -0800
committerColin Cross <ccross@android.com>2019-12-06 12:37:14 -0800
commitae6c5207cc5faddcdbb480e5a58773e278fddebc (patch)
tree73ea1f0896c45fab8750e5b838e543da6de877b4 /rust/testing.go
parentf3c24c12efff1a6b8307eeea460310afbc80e131 (diff)
Move ImageMutator after archMutator
Move the ImageMutator to be registered just after the archMutator in preparation for moving it between osMutator and archMutator. Requries updating variants in a few tests that now run the ImageMutator. Bug: 142286466 Test: no change to build.ninja Test: all soong tests Change-Id: Ia9d2a7bc0e225bedec3c9a83ea04f471a931bf47
Diffstat (limited to 'rust/testing.go')
-rw-r--r--rust/testing.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/rust/testing.go b/rust/testing.go
index 45dbbbdcf..2067f8249 100644
--- a/rust/testing.go
+++ b/rust/testing.go
@@ -185,7 +185,6 @@ func CreateTestContext(bp string) *android.TestContext {
ctx.RegisterModuleType("toolchain_library", cc.ToolchainLibraryFactory)
ctx.PreDepsMutators(func(ctx android.RegisterMutatorsContext) {
// cc mutators
- ctx.BottomUp("image", android.ImageMutator).Parallel()
ctx.BottomUp("link", cc.LinkageMutator).Parallel()
ctx.BottomUp("version", cc.VersionMutator).Parallel()
ctx.BottomUp("begin", cc.BeginMutator).Parallel()