crashpad.py 926 Bytes
Newer Older
1 2 3 4 5 6
# Copyright 2015 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 CrashpadConfig(config_util.Config):
  """Basic Config class for Crashpad."""
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

  @staticmethod
  def fetch_spec(props):
    spec = {
      'solutions': [
        {
          'name': 'crashpad',
          'url': 'https://chromium.googlesource.com/crashpad/crashpad.git',
          'managed': False,
        },
      ],
    }
    return {
      'type': 'gclient_git',
      'gclient_git_spec': spec,
    }

  @staticmethod
  def expected_root(_props):
    return 'crashpad'


def main(argv=None):
37
  return CrashpadConfig().handle_args(argv)
38 39 40 41


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