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

Side by Side Diff: scripts/slave/recipe_modules/cipd/config.py

Issue 1193813004: cipd recipe_module (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: added ensure_installed Created 5 years, 6 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 from recipe_engine.config import config_item_context
Vadim Sh. 2015/06/29 21:00:46 I personally don't understand how this config stuf
seanmccullough 2015/06/30 17:39:39 IIRC iannucci@ suggested this approach. I'm fine
Vadim Sh. 2015/06/30 17:58:35 Yeah, let's keep it simple for now and add it late
seanmccullough 2015/06/30 19:12:03 Done.
2 from recipe_engine.config import ConfigGroup
3 from recipe_engine.config import Dict
4
5 def BaseConfig(**_kwargs):
6 # This never gets called.
7 return ConfigGroup(
8 packages = Dict(value_type=dict),
9 )
10
11 config_ctx = config_item_context(BaseConfig)
12
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698