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

Unified Diff: gclient.py

Issue 13489007: Add webkit_trunk override in gclient to force bots to use blink for now. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: fix nit 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
index 8c54d374320d2251dda917397362818b1fba5d62..c7613aeec52e0a6dc7accc35883f908e95872db9 100644
--- a/gclient.py
+++ b/gclient.py
@@ -187,6 +187,13 @@ class DependencySettings(GClientKeywords):
self._custom_vars = custom_vars or {}
self._custom_deps = custom_deps or {}
+ # TODO(iannucci): Remove this when all masters are correctly substituting
+ # 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')
+
# Post process the url to remove trailing slashes.
if isinstance(self._url, basestring):
# urls are sometime incorrectly written as proto://host/path/@rev. Replace
« 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