diff options
author | Jaewoong Jung <jungjw@google.com> | 2020-10-12 21:45:33 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-10-12 21:45:33 +0000 |
commit | c1c415d0f7ac34b2365dd0caf20ee3189e972003 (patch) | |
tree | 6913e351a0fa1b5462a12d834d3c1c82775175a8 /java/java_test.go | |
parent | 79bb3d47840b3296842a9b630b89163da6408c84 (diff) | |
parent | c779cd403f2e6a522bd71de45844f5109e641992 (diff) |
Merge "Apply PRODUCT_ENFORCE_RRO_TARGETS to dependencies."
Diffstat (limited to 'java/java_test.go')
-rw-r--r-- | java/java_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/java_test.go b/java/java_test.go index ea1e9ed82..53053df0e 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -102,6 +102,10 @@ func testContext() *android.TestContext { dexpreopt.RegisterToolModulesForTest(ctx) + ctx.PostDepsMutators(func(ctx android.RegisterMutatorsContext) { + ctx.TopDown("propagate_rro_enforcement", propagateRROEnforcementMutator).Parallel() + }) + return ctx } |