Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Unified Diff: recipes/v8.py

Issue 704773002: Switch v8 to git. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes/v8.py
diff --git a/recipes/v8.py b/recipes/v8.py
index 24632ccc1db803300d6e43ebd8ec4ae2a0da3233..b2270d024b516b9efa4e19031297979416c60a9f 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698