blob: 12071fb3d1b005da7945e4a92140e93f30d9aeb7 [file] [log] [blame]
# Copyright 2017 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
from recipe_engine.recipe_api import Property
from recipe_engine.config import ConfigGroup, List
DEPS = [
"context",
"path",
"platform",
"proto",
"warning",
]
PROPERTIES = {
'$recipe_engine/step': Property(
help="Properties for the recipe_engine/step module",
param_name="step_properties",
kind=ConfigGroup(
# A list of PATH elements to prefix onto the PATH for every step.
prefix_path=List(str),
), default={
'prefix_path': [],
}),
}