| 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)
|
|
|
|
|
|
|