OLD | NEW |
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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 binaries |= new_deps | 253 binaries |= new_deps |
254 queue.extend(list(new_deps)) | 254 queue.extend(list(new_deps)) |
255 | 255 |
256 GenerateSymbols(options, binaries) | 256 GenerateSymbols(options, binaries) |
257 | 257 |
258 return 0 | 258 return 0 |
259 | 259 |
260 | 260 |
261 if '__main__' == __name__: | 261 if '__main__' == __name__: |
262 sys.exit(main()) | 262 sys.exit(main()) |
OLD | NEW |