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

Side by Side Diff: components/crash/tools/generate_breakpad_symbols.py

Issue 485893007: Rename components/breakpad to components/crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + iOS tests Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « components/crash/tools/dmp2minidump.py ('k') | content/content_shell.gypi » ('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 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 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 """A tool to generate symbols for a binary suitable for breakpad. 6 """A tool to generate symbols for a binary suitable for breakpad.
7 7
8 Currently, the tool only supports Linux, Android, and Mac. Support for other 8 Currently, the tool only supports Linux, Android, and Mac. Support for other
9 platforms is planned. 9 platforms is planned.
10 """ 10 """
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 binaries |= new_deps 250 binaries |= new_deps
251 queue.extend(list(new_deps)) 251 queue.extend(list(new_deps))
252 252
253 GenerateSymbols(options, binaries) 253 GenerateSymbols(options, binaries)
254 254
255 return 0 255 return 0
256 256
257 257
258 if '__main__' == __name__: 258 if '__main__' == __name__:
259 sys.exit(main()) 259 sys.exit(main())
OLDNEW
« no previous file with comments | « components/crash/tools/dmp2minidump.py ('k') | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698