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

Side by Side Diff: gclient.py

Issue 1689633002: Finally get rid of depot_tools' breakpad. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: fix test Created 4 years, 10 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 | « gcl.py ('k') | git_cl.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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Meta checkout manager supporting both Subversion and GIT.""" 6 """Meta checkout manager supporting both Subversion and GIT."""
7 # Files 7 # Files
8 # .gclient : Current client configuration, written by 'config' command. 8 # .gclient : Current client configuration, written by 'config' command.
9 # Format is a Python script defining 'solutions', a list whose 9 # Format is a Python script defining 'solutions', a list whose
10 # entries each are maps binding the strings "name" and "url" 10 # entries each are maps binding the strings "name" and "url"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 import os 88 import os
89 import platform 89 import platform
90 import posixpath 90 import posixpath
91 import pprint 91 import pprint
92 import re 92 import re
93 import sys 93 import sys
94 import time 94 import time
95 import urllib 95 import urllib
96 import urlparse 96 import urlparse
97 97
98 import breakpad # pylint: disable=W0611
99
100 import fix_encoding 98 import fix_encoding
101 import gclient_scm 99 import gclient_scm
102 import gclient_utils 100 import gclient_utils
103 import git_cache 101 import git_cache
104 from third_party.repo.progress import Progress 102 from third_party.repo.progress import Progress
105 import subcommand 103 import subcommand
106 import subprocess2 104 import subprocess2
107 from third_party import colorama 105 from third_party import colorama
108 106
109 CHROMIUM_SRC_URL = 'https://chromium.googlesource.com/chromium/src.git' 107 CHROMIUM_SRC_URL = 'https://chromium.googlesource.com/chromium/src.git'
(...skipping 2214 matching lines...) Expand 10 before | Expand all | Expand 10 after
2324 2322
2325 2323
2326 if '__main__' == __name__: 2324 if '__main__' == __name__:
2327 try: 2325 try:
2328 sys.exit(main(sys.argv[1:])) 2326 sys.exit(main(sys.argv[1:]))
2329 except KeyboardInterrupt: 2327 except KeyboardInterrupt:
2330 sys.stderr.write('interrupted\n') 2328 sys.stderr.write('interrupted\n')
2331 sys.exit(1) 2329 sys.exit(1)
2332 2330
2333 # vim: ts=2:sw=2:tw=80:et: 2331 # vim: ts=2:sw=2:tw=80:et:
OLDNEW
« no previous file with comments | « gcl.py ('k') | git_cl.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698