OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
9 ], | 9 ], |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 12 matching lines...) Expand all Loading... |
23 }, | 23 }, |
24 }, | 24 }, |
25 'targets': [ | 25 'targets': [ |
26 { | 26 { |
27 'target_name': 'breakpad_utilities', | 27 'target_name': 'breakpad_utilities', |
28 'type': 'static_library', | 28 'type': 'static_library', |
29 'sources': [ | 29 'sources': [ |
30 'src/common/convert_UTF.c', | 30 'src/common/convert_UTF.c', |
31 'src/client/mac/handler/breakpad_nlist_64.cc', | 31 'src/client/mac/handler/breakpad_nlist_64.cc', |
32 'src/client/mac/handler/dynamic_images.cc', | 32 'src/client/mac/handler/dynamic_images.cc', |
| 33 'src/common/mac/bootstrap_compat.cc', |
33 'src/common/mac/file_id.cc', | 34 'src/common/mac/file_id.cc', |
34 'src/common/mac/MachIPC.mm', | 35 'src/common/mac/MachIPC.mm', |
35 'src/common/mac/macho_id.cc', | 36 'src/common/mac/macho_id.cc', |
36 'src/common/mac/macho_utilities.cc', | 37 'src/common/mac/macho_utilities.cc', |
37 'src/common/mac/macho_walker.cc', | 38 'src/common/mac/macho_walker.cc', |
38 'src/client/minidump_file_writer.cc', | 39 'src/client/minidump_file_writer.cc', |
39 'src/client/mac/handler/minidump_generator.cc', | 40 'src/client/mac/handler/minidump_generator.cc', |
40 'src/common/mac/SimpleStringDictionary.mm', | 41 'src/common/mac/SimpleStringDictionary.mm', |
41 'src/common/string_conversion.cc', | 42 'src/common/string_conversion.cc', |
42 'src/common/mac/string_utilities.cc', | 43 'src/common/mac/string_utilities.cc', |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 | 500 |
500 'include_dirs': [ | 501 'include_dirs': [ |
501 '..', | 502 '..', |
502 'src', | 503 'src', |
503 ], | 504 ], |
504 }, | 505 }, |
505 ], | 506 ], |
506 }], | 507 }], |
507 ], | 508 ], |
508 } | 509 } |
OLD | NEW |