Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(599)

Unified Diff: scripts/slave/recipe_modules/blimp/config.py

Issue 2416253003: Add the recipe_modules/blimp for integration bot (Closed)
Patch Set: add script steps in example.py Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698