Chromium Code Reviews| Index: scripts/slave/recipe_modules/blimp/config.py |
| diff --git a/scripts/slave/recipe_modules/blimp/config.py b/scripts/slave/recipe_modules/blimp/config.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8426983b4e6a10350b735325239f590bcc0ec704 |
| --- /dev/null |
| +++ b/scripts/slave/recipe_modules/blimp/config.py |
| @@ -0,0 +1,20 @@ |
| +# Copyright 2016 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, ConfigGroup |
| +from recipe_engine.config import ConfigList, Dict, List, Single, Static |
| +from recipe_engine.config_types import Path |
| + |
| +def BaseConfig(CHECKOUT_PATH, **_kwargs): |
| + return ConfigGroup( |
| + client_engine_integration_script = Static( |
|
mikecase (-- gone --)
2016/10/15 00:05:37
nit: I think you want to indent this 2 more spaces
shenghuazhang
2016/10/17 23:22:07
Done.
|
| + CHECKOUT_PATH.join('blimp', 'tools', |
| + 'client_engine_integration.py')), |
| + ) |
| + |
| +config_ctx = config_item_context(BaseConfig) |
| + |
| +@config_ctx() |
| +def base_config(c): |
| + pass |