diff options
Diffstat (limited to 'android/defs.go')
| -rw-r--r-- | android/defs.go | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/android/defs.go b/android/defs.go index 5c815e64e..45522246f 100644 --- a/android/defs.go +++ b/android/defs.go @@ -100,6 +100,9 @@ var (  	// Used only when USE_GOMA=true is set, to restrict non-goma jobs to the local parallelism value  	localPool = blueprint.NewBuiltinPool("local_pool") +	// Used only by RuleBuilder to identify remoteable rules. Does not actually get created in ninja. +	remotePool = blueprint.NewBuiltinPool("remote_pool") +  	// Used for processes that need significant RAM to ensure there are not too many running in parallel.  	highmemPool = blueprint.NewBuiltinPool("highmem_pool")  )  |