| OLD | NEW |
| (Empty) |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import sys | |
| 6 | |
| 7 import recipe_util # pylint: disable=F0401 | |
| 8 | |
| 9 | |
| 10 # This class doesn't need an __init__ method, so we disable the warning | |
| 11 # pylint: disable=W0232 | |
| 12 class DepotTools(recipe_util.Recipe): | |
| 13 """Basic Recipe class for DepotTools.""" | |
| 14 | |
| 15 @staticmethod | |
| 16 def fetch_spec(props): | |
| 17 url = 'https://chromium.googlesource.com/chromium/tools/depot_tools.git' | |
| 18 solution = { | |
| 19 'name' : 'depot_tools', | |
| 20 'url' : url, | |
| 21 'deps_file' : 'DEPS', | |
| 22 'managed' : False, | |
| 23 } | |
| 24 spec = { | |
| 25 'solutions': [solution], | |
| 26 'auto': True, | |
| 27 } | |
| 28 checkout_type = 'gclient_git_svn' | |
| 29 if props.get('nosvn'): | |
| 30 checkout_type = 'gclient_git' | |
| 31 spec_type = '%s_spec' % checkout_type | |
| 32 return { | |
| 33 'type': checkout_type, | |
| 34 spec_type: spec, | |
| 35 } | |
| 36 | |
| 37 @staticmethod | |
| 38 def expected_root(_props): | |
| 39 return 'depot_tools' | |
| 40 | |
| 41 | |
| 42 def main(argv=None): | |
| 43 return DepotTools().handle_args(argv) | |
| 44 | |
| 45 | |
| 46 if __name__ == '__main__': | |
| 47 sys.exit(main(sys.argv)) | |
| OLD | NEW |