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.
29 lines
802 B
Python
29 lines
802 B
Python
DEPS = [
|
|
'gclient',
|
|
'recipe_engine/json',
|
|
'recipe_engine/path',
|
|
'recipe_engine/platform',
|
|
'recipe_engine/properties',
|
|
'recipe_engine/python',
|
|
'recipe_engine/raw_io',
|
|
'rietveld',
|
|
'recipe_engine/step',
|
|
'tryserver',
|
|
]
|
|
|
|
from recipe_engine.recipe_api import Property
|
|
from recipe_engine.types import freeze
|
|
|
|
PROPERTIES = {
|
|
'issue': Property(default=None),
|
|
'patchset': Property(default=None),
|
|
'patch_project': Property(default=None),
|
|
'repository': Property(default=None),
|
|
'event.patchSet.ref': Property(default=None, param_name="gerrit_ref"),
|
|
'rietveld': Property(default=None),
|
|
'revision': Property(default=None),
|
|
'parent_got_revision': Property(default=None),
|
|
'deps_revision_overrides': Property(default=freeze({})),
|
|
'fail_patch': Property(default=None, kind=str),
|
|
}
|