blob: 16e08c5909a83822f2eb04e03d72f9fe83d0e68d [file] [log] [blame]
# Copyright 2019 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.
DEPS = [
'properties',
]
from recipe_engine.recipe_api import Property
from recipe_engine.config import ConfigGroup, Single
PROPERTIES = {
'$recipe_engine/cq': Property(
help='Properties specifically for the CQ module',
param_name='properties',
kind=ConfigGroup(
# Whether build is running in CQ dry run mode.
dry_run=Single(bool),
),
default={},
),
}