diff options
| author | 2023-05-22 16:40:16 +0000 | |
|---|---|---|
| committer | 2023-05-22 16:40:16 +0000 | |
| commit | 47514686b9026d34de32b00ec1d63db4d2e7e7b6 (patch) | |
| tree | 03f0e3701a9c1712f4049f8f320bf2c68c4274c9 /java/hiddenapi_singleton.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/hiddenapi_singleton.go')
| -rw-r--r-- | java/hiddenapi_singleton.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/hiddenapi_singleton.go b/java/hiddenapi_singleton.go index 52934a327..d4ee4fc9f 100644 --- a/java/hiddenapi_singleton.go +++ b/java/hiddenapi_singleton.go @@ -25,7 +25,7 @@ func init() { } func RegisterHiddenApiSingletonComponents(ctx android.RegistrationContext) { - ctx.RegisterSingletonType("hiddenapi", hiddenAPISingletonFactory) + ctx.RegisterParallelSingletonType("hiddenapi", hiddenAPISingletonFactory) } var PrepareForTestWithHiddenApiBuildComponents = android.FixtureRegisterWithContext(RegisterHiddenApiSingletonComponents) |