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

Side by Side Diff: recipe_modules/git_cl/config.py

Issue 1925873002: Add git_cl recipe module. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@set_desc
Patch Set: Add example.py, make cwd configurable by module. Created 4 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import types
6
7 from recipe_engine.config import config_item_context, ConfigGroup, BadConf
8 from recipe_engine.config import Single
9 from recipe_engine.config_types import Path
10
11 def BaseConfig(**_kwargs):
iannucci 2016/04/29 18:55:20 not convinced this is necessary (or desirable) If
tandrii(chromium) 2016/04/29 19:04:43 +1. It's not desirable. path['checkout'] would be
martiniss 2016/04/29 19:26:48 Ok, i'll just keep this as is for now.
tandrii(chromium) 2016/05/02 14:14:48 OOps, I re-invented the wheel. Now I've re-read wh
12 return ConfigGroup(
13 repo_location=Single(Path)
14 )
15
16 config_ctx = config_item_context(BaseConfig)
17
18 @config_ctx()
19 def basic(c):
20 pass
21
22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698