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

Unified Diff: deps2git.py

Issue 372193004: Make deps2git sync v8 bleeding_edge correctly. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/deps2git.git@master
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: deps2git.py
diff --git a/deps2git.py b/deps2git.py
index e84d702128847a3e90d3c155049c4ffbaf9b12b9..fb9145a98a155b82395512a459a7dd2aad83cc33 100755
--- a/deps2git.py
+++ b/deps2git.py
@@ -122,6 +122,11 @@ def SvnRevToGitHash(
and int(svn_rev) in (63, 141)):
return '72c6ae42396cb913bcab63c15585dc3b5c3f92f1'
+ # Work-around for crbug.com/391270, bleeding_edge is a local branch.
+ if (git_url.startswith('https://chromium.googlesource.com/external/v8')
+ and svn_branch_name == 'bleeding_edge'):
+ refspec = 'bleeding_edge'
+
return git_tools.Search(git_repo_path, svn_rev, mirror, refspec, git_url)
« 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