Merge "Parallelize singleton execution." am: bcb0e13831
Original change: https://android-review.googlesource.com/c/platform/system/sepolicy/+/2593085 Change-Id: I18a98d9c720e8a5c4b98a8dccd878e3dd55158bd Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
ff97fdff7e
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ var (
|
|||
func init() {
|
||||
ctx := android.InitRegistrationContext
|
||||
ctx.RegisterModuleType("se_compat_cil", compatCilFactory)
|
||||
ctx.RegisterSingletonModuleType("se_compat_test", compatTestFactory)
|
||||
ctx.RegisterParallelSingletonModuleType("se_compat_test", compatTestFactory)
|
||||
}
|
||||
|
||||
// se_compat_cil collects and installs backwards compatibility cil files.
|
||||
|
|
|
@ -23,7 +23,7 @@ import (
|
|||
|
||||
func init() {
|
||||
ctx := android.InitRegistrationContext
|
||||
ctx.RegisterSingletonModuleType("se_freeze_test", freezeTestFactory)
|
||||
ctx.RegisterParallelSingletonModuleType("se_freeze_test", freezeTestFactory)
|
||||
}
|
||||
|
||||
// se_freeze_test compares the plat sepolicy with the prebuilt sepolicy. Additional directories can
|
||||
|
|
Loading…
Reference in a new issue