blob: 2322feded0243a1109bd8d287a5ee7aba825e5df [file] [log] [blame]
DEPS = [
'cipd',
'context',
'json',
'path',
'properties',
'raw_io',
'runtime',
'step',
]
from recipe_engine.recipe_api import Property
from recipe_engine.config import ConfigGroup, Single
PROPERTIES = {
'$recipe_engine/isolated': Property(
help='Properties specifically for the isolated module',
param_name='isolated_properties',
kind=ConfigGroup(
server=Single(str),
version=Single(str),
),
default={},
),
}