From beea0b0c381459b5270ecfbf7925c1ea786eca94 Mon Sep 17 00:00:00 2001 From: "agable@chromium.org" Date: Sat, 23 Aug 2014 00:20:42 +0000 Subject: [PATCH] Make fetch chromium operate in git-only mode. DO NOT LAND until Flag Day. R=stip@chromium.org BUG=406165 Review URL: https://codereview.chromium.org/494993006 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@291565 0039d316-1c4b-4281-b951-d872f2087c98 --- recipes/chromium.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/recipes/chromium.py b/recipes/chromium.py index 1ced1c4b6..a99fb9ec8 100644 --- a/recipes/chromium.py +++ b/recipes/chromium.py @@ -26,19 +26,12 @@ class Chromium(recipe_util.Recipe): solution['custom_vars'] = {'webkit_rev': ''} spec = { 'solutions': [solution], - 'svn_url': 'svn://svn.chromium.org/chrome', - 'svn_branch': 'trunk/src', - 'svn_ref': 'master', } - if props.get('submodule_git_svn_spec'): - spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec'] if props.get('target_os'): spec['target_os'] = props['target_os'].split(',') if props.get('target_os_only'): spec['target_os_only'] = props['target_os_only'] - checkout_type = 'gclient_git_svn' - if props.get('nosvn'): - checkout_type = 'gclient_git' + checkout_type = 'gclient_git' spec_type = '%s_spec' % checkout_type return { 'type': checkout_type,