| 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 22 matching lines...) Expand all Loading... |
| 33 'src/common/mac/file_id.cc', | 33 'src/common/mac/file_id.cc', |
| 34 'src/common/mac/MachIPC.mm', | 34 'src/common/mac/MachIPC.mm', |
| 35 'src/common/mac/macho_id.cc', | 35 'src/common/mac/macho_id.cc', |
| 36 'src/common/mac/macho_utilities.cc', | 36 'src/common/mac/macho_utilities.cc', |
| 37 'src/common/mac/macho_walker.cc', | 37 'src/common/mac/macho_walker.cc', |
| 38 'src/client/minidump_file_writer.cc', | 38 'src/client/minidump_file_writer.cc', |
| 39 'src/client/mac/handler/minidump_generator.cc', | 39 'src/client/mac/handler/minidump_generator.cc', |
| 40 'src/common/mac/SimpleStringDictionary.mm', | 40 'src/common/mac/SimpleStringDictionary.mm', |
| 41 'src/common/string_conversion.cc', | 41 'src/common/string_conversion.cc', |
| 42 'src/common/mac/string_utilities.cc', | 42 'src/common/mac/string_utilities.cc', |
| 43 'src/common/md5.c', | 43 'src/common/md5.cc', |
| 44 ], | 44 ], |
| 45 }, | 45 }, |
| 46 { | 46 { |
| 47 'target_name': 'crash_inspector', | 47 'target_name': 'crash_inspector', |
| 48 'type': 'executable', | 48 'type': 'executable', |
| 49 'variables': { | 49 'variables': { |
| 50 'mac_real_dsym': 1, | 50 'mac_real_dsym': 1, |
| 51 }, | 51 }, |
| 52 'dependencies': [ | 52 'dependencies': [ |
| 53 'breakpad_utilities', | 53 'breakpad_utilities', |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'pending/src/common/module.cc', | 124 'pending/src/common/module.cc', |
| 125 'src/common/mac/dump_syms.mm', | 125 'src/common/mac/dump_syms.mm', |
| 126 'src/common/mac/file_id.cc', | 126 'src/common/mac/file_id.cc', |
| 127 'src/common/mac/macho_id.cc', | 127 'src/common/mac/macho_id.cc', |
| 128 'src/common/mac/macho_reader.cc', | 128 'src/common/mac/macho_reader.cc', |
| 129 'src/common/mac/macho_utilities.cc', | 129 'src/common/mac/macho_utilities.cc', |
| 130 'src/common/mac/macho_walker.cc', | 130 'src/common/mac/macho_walker.cc', |
| 131 'src/common/stabs_reader.cc', | 131 'src/common/stabs_reader.cc', |
| 132 'src/common/stabs_to_module.cc', | 132 'src/common/stabs_to_module.cc', |
| 133 'src/tools/mac/dump_syms/dump_syms_tool.mm', | 133 'src/tools/mac/dump_syms/dump_syms_tool.mm', |
| 134 'src/common/md5.c', | 134 'src/common/md5.cc', |
| 135 ], | 135 ], |
| 136 'defines': [ | 136 'defines': [ |
| 137 # For src/common/stabs_reader.h. | 137 # For src/common/stabs_reader.h. |
| 138 'HAVE_MACH_O_NLIST_H', | 138 'HAVE_MACH_O_NLIST_H', |
| 139 ], | 139 ], |
| 140 'xcode_settings': { | 140 'xcode_settings': { |
| 141 # Like ld, dump_syms needs to operate on enough data that it may | 141 # Like ld, dump_syms needs to operate on enough data that it may |
| 142 # actually need to be able to address more than 4GB. Use x86_64. | 142 # actually need to be able to address more than 4GB. Use x86_64. |
| 143 # Don't worry! An x86_64 dump_syms is perfectly able to dump | 143 # Don't worry! An x86_64 dump_syms is perfectly able to dump |
| 144 # 32-bit files. | 144 # 32-bit files. |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 | 434 |
| 435 'include_dirs': [ | 435 'include_dirs': [ |
| 436 '..', | 436 '..', |
| 437 'src', | 437 'src', |
| 438 ], | 438 ], |
| 439 }, | 439 }, |
| 440 ], | 440 ], |
| 441 }], | 441 }], |
| 442 ], | 442 ], |
| 443 } | 443 } |
| OLD | NEW |