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

Unified Diff: recipes/blink.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
« fetch.py ('K') | « fetch.py ('k') | recipes/chromium.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes/blink.py
diff --git a/recipes/blink.py b/recipes/blink.py
index fba16fb1564c474166e8d67862c46f8afbce3469..3390dcfa2fb6370b25cacf3e730ce14e886b1485 100644
--- a/recipes/blink.py
+++ b/recipes/blink.py
@@ -13,17 +13,19 @@ class Blink(recipe_util.Recipe):
@staticmethod
def fetch_spec(props):
- submodule_spec = {
- 'third_party/WebKit': {
- 'svn_url': 'svn://svn.chromium.org/blink/trunk',
- 'svn_branch': 'trunk',
- 'svn_ref': 'master',
+ new_props = ['--webkit_rev=ToT']
+ if props.get('anonymous', 'False') != 'True':
Dirk Pranke 2013/04/06 01:45:25 I saw the comment, but clearly at some point this
+ submodule_spec = {
+ 'third_party/WebKit': {
+ 'svn_url': 'svn://svn.chromium.org/blink/trunk',
+ 'svn_branch': 'trunk',
+ 'svn_ref': 'master',
+ }
}
- }
+ new_props += ['--submodule_git_svn_spec=' + json.dumps(submodule_spec)]
return {'alias': {
'recipe': 'chromium',
- 'props': ['--webkit_rev=ToT',
- '--submodule_git_svn_spec=' + json.dumps(submodule_spec)]
+ 'props': new_props,
}
}
« fetch.py ('K') | « fetch.py ('k') | recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698