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

Side by Side Diff: recipes/blink.py

Issue 14315010: Add fetch recipe alias targeting Android (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Additional fixes Created 7 years, 8 months 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 unified diff | Download patch
OLDNEW
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 import sys
5 import json 6 import json
M-A Ruel 2013/04/29 13:43:04 sorted
6 # pylint: disable=F0401 7 # pylint: disable=F0401
M-A Ruel 2013/04/29 13:43:04 same as the other file. And separate stdlib from n
7 import recipe_util 8 import recipe_util
8 import sys
9 9
10
11 # This class doesn't need an __init__ method, so we disable the warning
10 # pylint: disable=W0232 12 # pylint: disable=W0232
11 class Blink(recipe_util.Recipe): 13 class Blink(recipe_util.Recipe):
12 """Basic Recipe alias for Blink -> Chromium.""" 14 """Basic Recipe alias for Blink -> Chromium."""
13 15
14 @staticmethod 16 @staticmethod
15 def fetch_spec(props): 17 def fetch_spec(props):
16 submodule_spec = { 18 submodule_spec = {
17 'third_party/WebKit': { 19 'third_party/WebKit': {
18 'svn_url': 'svn://svn.chromium.org/blink/trunk', 20 'svn_url': 'svn://svn.chromium.org/blink/trunk',
19 'svn_branch': 'trunk', 21 'svn_branch': 'trunk',
20 'svn_ref': 'master', 22 'svn_ref': 'master',
21 } 23 }
22 } 24 }
23 return {'alias': { 25 return {
26 'alias': {
24 'recipe': 'chromium', 27 'recipe': 'chromium',
25 'props': ['--webkit_rev=ToT', 28 'props': [
26 '--submodule_git_svn_spec=' + json.dumps(submodule_spec)] 29 '--webkit_rev=ToT',
27 } 30 '--submodule_git_svn_spec=' + json.dumps(submodule_spec),
31 ],
32 },
28 } 33 }
29 34
30 35
31 def main(argv=None): 36 def main(argv=None):
32 Blink().handle_args(argv) 37 return Blink().handle_args(argv)
33 38
34 39
35 if __name__ == '__main__': 40 if __name__ == '__main__':
36 sys.exit(main(sys.argv)) 41 sys.exit(main(sys.argv))
OLDNEW
« recipes/android.py ('K') | « recipes/android.py ('k') | recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698