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

Side by Side Diff: recipes/blink.py

Issue 825133002: Speculative fix for build on windows build bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: expected_root Created 5 years, 12 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
« no previous file with comments | « recipes/android.py ('k') | recipes/ios.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 json 5 import json
6 import sys 6 import sys
7 7
8 import recipe_util # pylint: disable=F0401 8 import recipe_util # pylint: disable=F0401
9 9
10 10
(...skipping 12 matching lines...) Expand all
23 return { 23 return {
24 'alias': { 24 'alias': {
25 'recipe': 'chromium', 25 'recipe': 'chromium',
26 'props': [ 26 'props': [
27 '--webkit_revision=ToT', 27 '--webkit_revision=ToT',
28 '--submodule_git_svn_spec=' + json.dumps(submodule_spec), 28 '--submodule_git_svn_spec=' + json.dumps(submodule_spec),
29 ], 29 ],
30 }, 30 },
31 } 31 }
32 32
33 @staticmethod
34 def expected_root(_props):
35 return ''
36
33 37
34 def main(argv=None): 38 def main(argv=None):
35 return Blink().handle_args(argv) 39 return Blink().handle_args(argv)
36 40
37 41
38 if __name__ == '__main__': 42 if __name__ == '__main__':
39 sys.exit(main(sys.argv)) 43 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « recipes/android.py ('k') | recipes/ios.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698