Chromium Code Reviews| Index: gclient.py |
| diff --git a/gclient.py b/gclient.py |
| index 8c54d374320d2251dda917397362818b1fba5d62..f2c2a56dbbe4b23c904d3cd085c4374e013a8df3 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','') == |
|
cmp
2013/04/04 00:59:53
nit: insert a space after ,
|
| + '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 |