| Index: buildspec_to_git.py
|
| diff --git a/buildspec_to_git.py b/buildspec_to_git.py
|
| index c8e0fada644e1ccc0e025189c6964cd5217b0ac7..1b5b6f889d52b8c85c2047567376f69f0858e908 100644
|
| --- a/buildspec_to_git.py
|
| +++ b/buildspec_to_git.py
|
| @@ -228,6 +228,11 @@ def SvnUrlToGitUrl(path, svn_url):
|
| return (path, repo, GIT_HOST, match.group('branch'))
|
|
|
| # reference builds
|
| - if svn_url.startswith('/trunk/deps/reference_builds/chrome'):
|
| - return (path, GIT_HOST + 'chromium/reference_builds/chrome.git',
|
| - GIT_HOST)
|
| + # TODO(mmoss): This is no longer appropriate for current buildspecs, where
|
| + # each platform has its own repo, as defined in git_updater. Not sure if
|
| + # there's a way to detect and handle the current and the old repo configs at
|
| + # the same time. Turning off for now, since we care more about current
|
| + # configs.
|
| + #if svn_url.startswith('/trunk/deps/reference_builds/chrome'):
|
| + # return (path, GIT_HOST + 'chromium/reference_builds/chrome.git',
|
| + # GIT_HOST)
|
|
|