diff options
Diffstat (limited to 'java')
-rw-r--r-- | java/bootclasspath.go | 2 | ||||
-rw-r--r-- | java/dexpreopt_bootjars.go | 2 | ||||
-rw-r--r-- | java/java.go | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/java/bootclasspath.go b/java/bootclasspath.go index 029f6f623..3413cf350 100644 --- a/java/bootclasspath.go +++ b/java/bootclasspath.go @@ -29,7 +29,7 @@ func init() { func registerBootclasspathBuildComponents(ctx android.RegistrationContext) { ctx.FinalDepsMutators(func(ctx android.RegisterMutatorsContext) { - ctx.BottomUp("bootclasspath_deps", bootclasspathDepsMutator).Parallel() + ctx.BottomUp("bootclasspath_deps", bootclasspathDepsMutator) }) } diff --git a/java/dexpreopt_bootjars.go b/java/dexpreopt_bootjars.go index 5c69ff151..fa6653f08 100644 --- a/java/dexpreopt_bootjars.go +++ b/java/dexpreopt_bootjars.go @@ -465,7 +465,7 @@ func RegisterDexpreoptBootJarsComponents(ctx android.RegistrationContext) { ctx.RegisterParallelSingletonModuleType("dex_bootjars", dexpreoptBootJarsFactory) ctx.RegisterModuleType("art_boot_images", artBootImagesFactory) ctx.FinalDepsMutators(func(ctx android.RegisterMutatorsContext) { - ctx.BottomUp("dex_bootjars_deps", DexpreoptBootJarsMutator).Parallel() + ctx.BottomUp("dex_bootjars_deps", DexpreoptBootJarsMutator) }) } diff --git a/java/java.go b/java/java.go index 018850fef..4a1f2d9f5 100644 --- a/java/java.go +++ b/java/java.go @@ -70,9 +70,9 @@ func registerJavaBuildComponents(ctx android.RegistrationContext) { // established, to not get the dependencies split into the wrong variants and // to support the checks in dexpreoptDisabled(). ctx.FinalDepsMutators(func(ctx android.RegisterMutatorsContext) { - ctx.BottomUp("dexpreopt_tool_deps", dexpreoptToolDepsMutator).Parallel() + ctx.BottomUp("dexpreopt_tool_deps", dexpreoptToolDepsMutator) // needs access to ApexInfoProvider which is available after variant creation - ctx.BottomUp("jacoco_deps", jacocoDepsMutator).Parallel() + ctx.BottomUp("jacoco_deps", jacocoDepsMutator) }) ctx.RegisterParallelSingletonType("kythe_java_extract", kytheExtractJavaFactory) |