blob: cc64377cc5dde67a84ad71fd47ca71079be03b94 [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
"fuchsia/cache",
"recipe_engine/buildbucket",
"recipe_engine/context",
"recipe_engine/file",
"recipe_engine/path",
"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={},
),
}