From 3e8df4bfc9d5585b2377a75f7e402db1b8c05ce8 Mon Sep 17 00:00:00 2001 From: "iannucci@chromium.org" Date: Thu, 4 Apr 2013 01:08:52 +0000 Subject: [PATCH] Add webkit_trunk override in gclient to force bots to use blink for now. R=cmp@chromium.org BUG= Review URL: https://codereview.chromium.org/13489007 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@192200 0039d316-1c4b-4281-b951-d872f2087c98 --- gclient.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gclient.py b/gclient.py index 8c54d3743..c7613aeec 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