blob: e208e08bfdb30e216513ee7271840dce05bbad43 [file] [log] [blame]
DEPS = [
'build',
'depot_tools/cipd',
'depot_tools/depot_tools',
'depot_tools/gclient',
'puppet_service_account',
'recipe_engine/buildbucket',
'recipe_engine/context',
'recipe_engine/file',
'recipe_engine/json',
'recipe_engine/path',
'recipe_engine/platform',
'recipe_engine/properties',
'recipe_engine/python',
'recipe_engine/raw_io',
'recipe_engine/runtime',
'recipe_engine/step',
'recipe_engine/time',
]
from recipe_engine.recipe_api import Property
from recipe_engine.config import ConfigGroup, Single
PROPERTIES = {
'$build/goma': Property(
help='Properties specifically for the goma module',
param_name='properties',
kind=ConfigGroup(
# How many jobs to run in parallel.
jobs=Single(int),
# Whether or not to turn on debug mode.
debug=Single(bool),
),
default={},
),
}