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

Unified Diff: recipes/chromium.py

Issue 13743002: Add non-git-svn checkout to fetch.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 8 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
« recipes/blink.py ('K') | « recipes/blink.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes/chromium.py
diff --git a/recipes/chromium.py b/recipes/chromium.py
index 3933d5be1f947167e09c1a3f53eca90c1f4e2e1b..0f4e8f88eefe4265cef4ff0a1913ef393581085c 100644
--- a/recipes/chromium.py
+++ b/recipes/chromium.py
@@ -24,16 +24,26 @@ class Chromium(recipe_util.Recipe):
solution['custom_vars'] = {'webkit_rev': ''}
spec = {
'solutions': [solution],
- 'svn_url': 'svn://svn.chromium.org/chrome',
- 'svn_branch': 'trunk/src',
- 'svn_ref': 'git-svn',
- }
- if props.get('submodule_git_svn_spec'):
- spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec']
- return {
- 'type': 'gclient_git_svn',
- 'gclient_git_svn_spec': spec
}
+ if props.get('anonymous', 'False') != 'True':
+ spec.update({
+ 'svn_url': 'svn://svn.chromium.org/chrome',
+ 'svn_branch': 'trunk/src',
+ 'svn_ref': 'git-svn',
+ })
+ if props.get('submodule_git_svn_spec'):
+ spec.update({
+ 'submodule_git_svn_spec': props['submodule_git_svn_spec']
+ })
+ return {
+ 'type': 'gclient_git_svn',
+ 'gclient_git_svn_spec': spec
+ }
+ else:
+ return {
+ 'type': 'gclient_git',
+ 'gclient_git_spec': spec,
+ }
@staticmethod
def expected_root(_props):
« recipes/blink.py ('K') | « recipes/blink.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698