summaryrefslogtreecommitdiff
path: root/sdk/sdk_test.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2019-11-18 16:00:16 -0800
committer Colin Cross <ccross@android.com> 2019-11-20 15:21:32 -0800
commit7228ecd5e3c9282e7e6f4a81d81fd333cb08eaff (patch)
treeb08a1652d573a01819c7937ad22659429f50578f /sdk/sdk_test.go
parent43b92e0d0f477e2ae9f3c3e07696e2d1760b7d84 (diff)
Move cc.imageMutator into the android package
Prepare for making the image mutator available to all modules and moving it between the os and arch mutators by moving it into the android package and using an interface implemented by the module types to control it. Bug: 142286466 Test: No unexpected changes to out/soong/build.ninja Change-Id: I0dcc9c7b5ec80edffade340c367f6ae4da34151b
Diffstat (limited to 'sdk/sdk_test.go')
-rw-r--r--sdk/sdk_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdk/sdk_test.go b/sdk/sdk_test.go
index 3471bc9da..c14d90c3a 100644
--- a/sdk/sdk_test.go
+++ b/sdk/sdk_test.go
@@ -55,7 +55,7 @@ func testSdkContext(t *testing.T, bp string) (*android.TestContext, android.Conf
ctx.RegisterModuleType("llndk_library", android.ModuleFactoryAdaptor(cc.LlndkLibraryFactory))
ctx.RegisterModuleType("toolchain_library", android.ModuleFactoryAdaptor(cc.ToolchainLibraryFactory))
ctx.PreDepsMutators(func(ctx android.RegisterMutatorsContext) {
- ctx.BottomUp("image", cc.ImageMutator).Parallel()
+ ctx.BottomUp("image", android.ImageMutator).Parallel()
ctx.BottomUp("link", cc.LinkageMutator).Parallel()
ctx.BottomUp("vndk", cc.VndkMutator).Parallel()
ctx.BottomUp("test_per_src", cc.TestPerSrcMutator).Parallel()