You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
870 B
Python
36 lines
870 B
Python
PYTHON_VERSION_COMPATIBILITY = 'PY2+3'
|
|
|
|
DEPS = [
|
|
'depot_tools',
|
|
'gclient',
|
|
'gerrit',
|
|
'gitiles',
|
|
'recipe_engine/buildbucket',
|
|
'recipe_engine/context',
|
|
'recipe_engine/commit_position',
|
|
'recipe_engine/cq',
|
|
'recipe_engine/json',
|
|
'recipe_engine/milo',
|
|
'recipe_engine/path',
|
|
'recipe_engine/platform',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/raw_io',
|
|
'recipe_engine/runtime',
|
|
'recipe_engine/step',
|
|
'tryserver',
|
|
]
|
|
|
|
from recipe_engine.recipe_api import Property
|
|
|
|
PROPERTIES = {
|
|
# Gerrit patches will have all properties about them prefixed with patch_.
|
|
'deps_revision_overrides': Property(default={}),
|
|
'fail_patch': Property(default=None, kind=str),
|
|
|
|
'$depot_tools/bot_update': Property(
|
|
help='Properties specific to bot_update module.',
|
|
param_name='properties',
|
|
default={},
|
|
),
|
|
}
|