Commit 2ddad2c0 authored by primiano@chromium.org's avatar primiano@chromium.org

Fix the git-svn remote for the depot_tools and nacl recipes.

The depot_tools and nacl recipes aren't setting up git-svn
properly. There is no git-svn branch in the git mirror for
depot-tools and nacl, just master.
As a consequence "fetch depot-tools" ends up recreating all
the objects from svn taking much more time than it should.

BUG=

Review URL: https://codereview.chromium.org/183743010

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@254506 0039d316-1c4b-4281-b951-d872f2087c98
parent 71756329
......@@ -26,7 +26,7 @@ class DepotTools(recipe_util.Recipe):
'solutions': [solution],
'svn_url': 'svn://svn.chromium.org/chrome',
'svn_branch': 'trunk/tools/depot_tools',
'svn_ref': 'git-svn',
'svn_ref': 'master',
}
if props.get('submodule_git_svn_spec'):
spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec']
......
......@@ -27,7 +27,7 @@ class NaCl(recipe_util.Recipe):
'solutions': [solution],
'svn_url': 'svn://svn.chromium.org/native_client',
'svn_branch': 'trunk/src/native_client',
'svn_ref': 'git-svn',
'svn_ref': 'master',
}
if props.get('submodule_git_svn_spec'):
spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec']
......
......@@ -26,7 +26,7 @@ class Naclports(recipe_util.Recipe):
'solutions': [solution],
'svn_url': 'https://naclports.googlecode.com/svn',
'svn_branch': 'trunk/src',
'svn_ref': 'git-svn',
'svn_ref': 'master',
}
if props.get('submodule_git_svn_spec'):
spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment