Index: recipes/chromium.py |
diff --git a/recipes/chromium.py b/recipes/chromium.py |
index 3933d5be1f947167e09c1a3f53eca90c1f4e2e1b..d3634865add34731a56bf4cb4eec3e184b46072a 100644 |
--- a/recipes/chromium.py |
+++ b/recipes/chromium.py |
@@ -30,9 +30,13 @@ class Chromium(recipe_util.Recipe): |
} |
if props.get('submodule_git_svn_spec'): |
spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec'] |
+ solution_type = 'gclient_git_svn' |
Mike West
2013/04/11 14:03:48
Nit: "Solution" seems like a weird name for this.
jochen (gone - plz use gerrit)
2013/04/11 14:20:03
Done.
|
+ if props.get('nosvn'): |
+ solution_type = 'gclient_git' |
+ spec_type = '%s_spec' % solution_type |
return { |
- 'type': 'gclient_git_svn', |
- 'gclient_git_svn_spec': spec |
+ 'type': solution_type, |
+ spec_type: spec |
} |
@staticmethod |