From cc69dfbcf9410c115fb5efed6577b451937763ce Mon Sep 17 00:00:00 2001 From: "jochen@chromium.org" Date: Wed, 11 Jun 2014 18:49:54 +0000 Subject: [PATCH] Make fetch v8 work with the new branch BUG=none R=mmoss@chromium.org Review URL: https://codereview.chromium.org/329313002 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@276467 0039d316-1c4b-4281-b951-d872f2087c98 --- recipes/v8.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipes/v8.py b/recipes/v8.py index bfa7916fba..b243867cb7 100644 --- a/recipes/v8.py +++ b/recipes/v8.py @@ -14,7 +14,7 @@ class V8(recipe_util.Recipe): @staticmethod def fetch_spec(props): - ref = 'branch-heads/bleeding_edge' + ref = 'bleeding_edge' url = 'https://chromium.googlesource.com/external/v8.git@%s' % ref solution = { 'name' :'v8', 'url' : url, @@ -28,8 +28,6 @@ class V8(recipe_util.Recipe): 'svn_url': 'https://v8.googlecode.com/svn', 'svn_branch': 'branches/bleeding_edge', 'svn_ref': 'bleeding_edge', - 'svn_prefix': 'branch-heads/', - 'with_branch_heads': True, } checkout_type = 'gclient_git_svn' if props.get('nosvn'):