depot_tools.py 1.04 KB
Newer Older
1 2 3 4 5 6
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import sys

7
import config_util  # pylint: disable=import-error
8 9 10


# This class doesn't need an __init__ method, so we disable the warning
11
# pylint: disable=no-init
12 13
class DepotTools(config_util.Config):
  """Basic Config class for DepotTools."""
14 15 16 17

  @staticmethod
  def fetch_spec(props):
    url = 'https://chromium.googlesource.com/chromium/tools/depot_tools.git'
18 19 20 21 22
    solution = {
        'name'        : 'depot_tools',
        'url'         : url,
        'deps_file'   : 'DEPS',
        'managed'     : False,
23 24 25 26
    }
    spec = {
      'solutions': [solution],
    }
27
    checkout_type = 'gclient_git'
28 29 30 31 32 33 34 35
    spec_type = '%s_spec' % checkout_type
    return {
      'type': checkout_type,
      spec_type: spec,
    }

  @staticmethod
  def expected_root(_props):
36
    return 'depot_tools'
37 38 39 40 41 42 43 44


def main(argv=None):
  return DepotTools().handle_args(argv)


if __name__ == '__main__':
  sys.exit(main(sys.argv))