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

Unified Diff: buildspec_to_git.py

Issue 417283003: Disable special handling for old reference_build repos. (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/deps2git
Patch Set: Created 6 years, 5 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: 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)
« 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