diff options
author | 2019-12-19 15:11:53 +0000 | |
---|---|---|
committer | 2019-12-19 19:19:40 +0000 | |
commit | 0c4979bbdf7f054f6f44be5bed1f5432dbbc33e6 (patch) | |
tree | bd7ee2c29417d83633c351981ddd9dafea8d6c93 /sysprop/sysprop_test.go | |
parent | 77980a8bb9e86cbd847181e2f5d53b06a987cae8 (diff) |
Dedup prebuilt mutator registration
Test: m checkbuild
Bug: 146540677
Change-Id: I9f8a11adf61fe6f352ec1eabc7c5bac332348ba2
Diffstat (limited to 'sysprop/sysprop_test.go')
-rw-r--r-- | sysprop/sysprop_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysprop/sysprop_test.go b/sysprop/sysprop_test.go index fe9e82a59..bdb9915ff 100644 --- a/sysprop/sysprop_test.go +++ b/sysprop/sysprop_test.go @@ -60,8 +60,7 @@ func testContext(config android.Config) *android.TestContext { java.RegisterAppBuildComponents(ctx) java.RegisterSystemModulesBuildComponents(ctx) - ctx.PreArchMutators(android.RegisterPrebuiltsPreArchMutators) - ctx.PreArchMutators(android.RegisterPrebuiltsPostDepsMutators) + android.RegisterPrebuiltMutators(ctx) ctx.PreArchMutators(android.RegisterDefaultsPreArchMutators) ctx.PreArchMutators(func(ctx android.RegisterMutatorsContext) { ctx.BottomUp("sysprop_deps", syspropDepsMutator).Parallel() |