OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # pylint: disable=F0401 | 5 # pylint: disable=F0401 |
6 import recipe_util | 6 import recipe_util |
7 import sys | 7 import sys |
8 | 8 |
9 # pylint: disable=W0232 | 9 # pylint: disable=W0232 |
10 class Chromium(recipe_util.Recipe): | 10 class Chromium(recipe_util.Recipe): |
11 """Basic Recipe class for Chromium.""" | 11 """Basic Recipe class for Chromium.""" |
12 | 12 |
13 @staticmethod | 13 @staticmethod |
14 def fetch_spec(props): | 14 def fetch_spec(props): |
15 url = 'https://chromium.googlesource.com/chromium/src.git' | 15 url = 'https://chromium.googlesource.com/chromium/src.git' |
16 solution = { 'name' :'src', | 16 solution = { 'name' :'src', |
17 'url' : url, | 17 'url' : url, |
18 'deps_file': '.DEPS.git', | 18 'deps_file': '.DEPS.git', |
19 'managed' : True, | 19 'managed' : True, |
20 'custom_deps': {}, | 20 'custom_deps': {}, |
21 'safesync_url': '', | 21 'safesync_url': '', |
22 } | 22 } |
23 if props.get('webkit_rev', '') == 'ToT': | 23 if props.get('webkit_rev', '') == 'ToT': |
24 solution['custom_vars'] = {'webkit_rev': ''} | 24 solution['custom_vars'] = {'webkit_rev': ''} |
25 spec = { | 25 spec = { |
26 'solutions': [solution], | 26 'solutions': [solution], |
27 'svn_url': 'svn://svn.chromium.org/chrome', | |
28 'svn_branch': 'trunk/src', | |
29 'svn_ref': 'git-svn', | |
30 } | 27 } |
31 if props.get('submodule_git_svn_spec'): | 28 if props.get('anonymous', 'False') != 'True': |
32 spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec'] | 29 spec.update({ |
33 return { | 30 'svn_url': 'svn://svn.chromium.org/chrome', |
34 'type': 'gclient_git_svn', | 31 'svn_branch': 'trunk/src', |
35 'gclient_git_svn_spec': spec | 32 'svn_ref': 'git-svn', |
36 } | 33 }) |
| 34 if props.get('submodule_git_svn_spec'): |
| 35 spec.update({ |
| 36 'submodule_git_svn_spec': props['submodule_git_svn_spec'] |
| 37 }) |
| 38 return { |
| 39 'type': 'gclient_git_svn', |
| 40 'gclient_git_svn_spec': spec |
| 41 } |
| 42 else: |
| 43 return { |
| 44 'type': 'gclient_git', |
| 45 'gclient_git_spec': spec, |
| 46 } |
37 | 47 |
38 @staticmethod | 48 @staticmethod |
39 def expected_root(_props): | 49 def expected_root(_props): |
40 return 'src' | 50 return 'src' |
41 | 51 |
42 | 52 |
43 def main(argv=None): | 53 def main(argv=None): |
44 return Chromium().handle_args(argv) | 54 return Chromium().handle_args(argv) |
45 | 55 |
46 | 56 |
47 if __name__ == '__main__': | 57 if __name__ == '__main__': |
48 sys.exit(main(sys.argv)) | 58 sys.exit(main(sys.argv)) |
OLD | NEW |