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

Unified Diff: gclient.py

Issue 13613004: Add print statement to blink overwrite hack. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient.py
diff --git a/gclient.py b/gclient.py
old mode 100644
new mode 100755
index c7613aeec52e0a6dc7accc35883f908e95872db9..85f144c1faa052298c3c082dbdd2dfd4d453b205
--- a/gclient.py
+++ b/gclient.py
@@ -191,8 +191,9 @@ class DependencySettings(GClientKeywords):
# the new blink url.
if (self._custom_vars.get('webkit_trunk', '') ==
'svn://svn-mirror.golo.chromium.org/webkit-readonly/trunk'):
- self._custom_vars['webkit_trunk'] = (
- 'svn://svn-mirror.golo.chromium.org/blink/trunk')
+ new_url = 'svn://svn-mirror.golo.chromium.org/blink/trunk'
+ print 'Overwriting Var("webkit_trunk") with %s' % new_url
+ self._custom_vars['webkit_trunk'] = new_url
# Post process the url to remove trailing slashes.
if isinstance(self._url, basestring):
@@ -1439,7 +1440,7 @@ checked out tree via 'patch -p0 < patchfile'.
'references')
parser.remove_option('--jobs')
(options, args) = parser.parse_args(args)
- # Force jobs to 1 so the stdout is not annotated with the thread ids
+ # Force jobs to 1 so the stdout is not annotated with the thread ids
options.jobs = 1
client = GClient.LoadCurrentConfig(options)
if not client:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698