From 23f7484e1e0f2e70539d7f2cae8bed5c9c6faf71 Mon Sep 17 00:00:00 2001 From: "machenbach@chromium.org" Date: Wed, 12 Nov 2014 17:52:43 +0000 Subject: [PATCH] Switch v8 to git. BUG=415464 R=agable@chromium.org, tandrii@chromium.org Review URL: https://codereview.chromium.org/704773002 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@292909 0039d316-1c4b-4281-b951-d872f2087c98 --- recipes/v8.py | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/recipes/v8.py b/recipes/v8.py index 24632ccc1d..b2270d024b 100644 --- a/recipes/v8.py +++ b/recipes/v8.py @@ -18,7 +18,7 @@ class V8(recipe_util.Recipe): solution = { 'name' : 'v8', 'url' : url, - 'deps_file' : '.DEPS.git', + 'deps_file' : 'DEPS', 'managed' : False, 'custom_deps' : {}, 'safesync_url': '', @@ -26,22 +26,10 @@ class V8(recipe_util.Recipe): spec = { 'solutions': [solution], 'with_branch_heads': True, - 'svn_url': 'https://v8.googlecode.com/svn', - 'git_svn_fetch': { - 'branches/bleeding_edge': 'refs/remotes/origin/master', - 'trunk': 'refs/remotes/origin/candidates', - 'branches/3.28': 'refs/remotes/branch-heads/3.28', - 'branches/3.29': 'refs/remotes/branch-heads/3.29', - }, - 'git_svn_branches': {}, } - checkout_type = 'gclient_git_svn' - if props.get('nosvn'): - checkout_type = 'gclient_git' - spec_type = '%s_spec' % checkout_type return { - 'type': checkout_type, - spec_type: spec, + 'type': 'gclient_git', + 'gclient_git_spec': spec, } @staticmethod