Index: recipes/v8.py |
diff --git a/recipes/chromium.py b/recipes/v8.py |
similarity index 53% |
copy from recipes/chromium.py |
copy to recipes/v8.py |
index 4eac6bdbb712dbb2b258a5987a27eab7f2c4570a..0d9e7bd8482172f9455e2dcea806ede3fd5a65b7 100644 |
--- a/recipes/chromium.py |
+++ b/recipes/v8.py |
@@ -9,33 +9,25 @@ import recipe_util # pylint: disable=F0401 |
# This class doesn't need an __init__ method, so we disable the warning |
# pylint: disable=W0232 |
-class Chromium(recipe_util.Recipe): |
- """Basic Recipe class for Chromium.""" |
+class V8(recipe_util.Recipe): |
+ """Basic Recipe class for V8.""" |
@staticmethod |
def fetch_spec(props): |
- url = 'https://chromium.googlesource.com/chromium/src.git' |
- solution = { 'name' :'src', |
+ url = 'git://github.com/v8/v8.git' |
Michael Achenbach
2014/04/04 14:11:55
Could we also make that work with the googlesource
jochen (gone - plz use gerrit)
2014/04/04 15:58:05
I guess so, but this is the official mirror accord
|
+ solution = { 'name' :'v8', |
'url' : url, |
- 'deps_file': '.DEPS.git', |
'managed' : False, |
'custom_deps': {}, |
'safesync_url': '', |
} |
- if props.get('webkit_rev', '') == 'ToT': |
- solution['custom_vars'] = {'webkit_rev': ''} |
spec = { |
'solutions': [solution], |
- 'svn_url': 'svn://svn.chromium.org/chrome', |
- 'svn_branch': 'trunk/src', |
- 'svn_ref': 'git-svn', |
+ 'svn_url': 'https://v8.googlecode.com/svn', |
+ 'svn_branch': 'branches/bleeding_edge', |
+ 'svn_ref': 'bleeding_edge', |
+ 'initial_branch': 'bleeding_edge', |
Michael Achenbach
2014/04/04 14:11:55
Can't say much about this. Will you work on 'maste
jochen (gone - plz use gerrit)
2014/04/04 15:58:05
No, bleeding edge will be the default. Without thi
|
} |
- 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' |
@@ -47,11 +39,11 @@ class Chromium(recipe_util.Recipe): |
@staticmethod |
def expected_root(_props): |
- return 'src' |
+ return 'v8' |
def main(argv=None): |
- return Chromium().handle_args(argv) |
+ return V8().handle_args(argv) |
if __name__ == '__main__': |