| Index: scripts/slave/recipe_modules/cipd/config.py
|
| diff --git a/scripts/slave/recipe_modules/cipd/config.py b/scripts/slave/recipe_modules/cipd/config.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..398bcad6296a079f8be3239e1913d0894f1c5218
|
| --- /dev/null
|
| +++ b/scripts/slave/recipe_modules/cipd/config.py
|
| @@ -0,0 +1,15 @@
|
| +# Copyright 2015 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +from recipe_engine.config import config_item_context
|
| +from recipe_engine.config import ConfigGroup
|
| +from recipe_engine.config import Dict
|
| +
|
| +def BaseConfig(**_kwargs):
|
| + return ConfigGroup(
|
| + packages = Dict(value_type=dict),
|
| + )
|
| +
|
| +config_ctx = config_item_context(BaseConfig)
|
| +
|
|
|