Skip to content

Commit

Permalink
Make fetch chromium operate in git-only mode.
Browse files Browse the repository at this point in the history
DO NOT LAND until Flag Day.

[email protected]
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
  • Loading branch information
[email protected] committed Aug 23, 2014
1 parent 3fd325b commit beea0b0
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions recipes/chromium.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,12 @@ def fetch_spec(props):
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,
Expand Down

0 comments on commit beea0b0

Please sign in to comment.