blob: 62572c96f8fac8b2a8deadaff62169ea3b37fccc [file] [log] [blame]
DEPS = [
'recipe_engine/context',
'recipe_engine/file',
'recipe_engine/path',
'recipe_engine/platform',
'recipe_engine/properties',
'recipe_engine/python',
'recipe_engine/raw_io',
'recipe_engine/step',
]
from recipe_engine.recipe_api import Property
from recipe_engine.config import ConfigGroup, Single
PROPERTIES = {
'$fuchsia/git':
Property(
help='Properties specifically for the git module',
param_name='git_properties',
kind=ConfigGroup(
# The named cache path.
cache_path=Single(str),),
default={},
),
}