diff options
| author | 2023-05-22 16:40:16 +0000 | |
|---|---|---|
| committer | 2023-05-22 16:40:16 +0000 | |
| commit | 47514686b9026d34de32b00ec1d63db4d2e7e7b6 (patch) | |
| tree | 03f0e3701a9c1712f4049f8f320bf2c68c4274c9 /java/platform_bootclasspath.go | |
| parent | 7e9e20e389d065e73c26f4b2dc54333292bc931c (diff) | |
| parent | 0c10e4dcc027e341655e8eedc20bd77f9539a22b (diff) | |
Merge changes from topic "parallel-singletons"
* changes:
Parallelize singleton execution
android: Allow running some singletons in parallel.
Diffstat (limited to 'java/platform_bootclasspath.go')
| -rw-r--r-- | java/platform_bootclasspath.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/platform_bootclasspath.go b/java/platform_bootclasspath.go index 07fb92cfe..0d4db7ca1 100644 --- a/java/platform_bootclasspath.go +++ b/java/platform_bootclasspath.go @@ -26,7 +26,7 @@ func init() { } func registerPlatformBootclasspathBuildComponents(ctx android.RegistrationContext) { - ctx.RegisterSingletonModuleType("platform_bootclasspath", platformBootclasspathFactory) + ctx.RegisterParallelSingletonModuleType("platform_bootclasspath", platformBootclasspathFactory) } // The tags used for the dependencies between the platform bootclasspath and any configured boot |