|
|
|
@ -18,7 +18,7 @@ class V8(recipe_util.Recipe):
|
|
|
|
solution = {
|
|
|
|
solution = {
|
|
|
|
'name' : 'v8',
|
|
|
|
'name' : 'v8',
|
|
|
|
'url' : url,
|
|
|
|
'url' : url,
|
|
|
|
'deps_file' : '.DEPS.git',
|
|
|
|
'deps_file' : 'DEPS',
|
|
|
|
'managed' : False,
|
|
|
|
'managed' : False,
|
|
|
|
'custom_deps' : {},
|
|
|
|
'custom_deps' : {},
|
|
|
|
'safesync_url': '',
|
|
|
|
'safesync_url': '',
|
|
|
|
@ -26,22 +26,10 @@ class V8(recipe_util.Recipe):
|
|
|
|
spec = {
|
|
|
|
spec = {
|
|
|
|
'solutions': [solution],
|
|
|
|
'solutions': [solution],
|
|
|
|
'with_branch_heads': True,
|
|
|
|
'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 {
|
|
|
|
return {
|
|
|
|
'type': checkout_type,
|
|
|
|
'type': 'gclient_git',
|
|
|
|
spec_type: spec,
|
|
|
|
'gclient_git_spec': spec,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
@staticmethod
|
|
|
|
|