| 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 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 Loading... |
| 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)) |
| OLD | NEW |