| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 config("tools_config") { | 5 config("tools_config") { |
| 6 include_dirs = [ "src", "src/third_party" ] | 6 include_dirs = [ "src", "src/third_party" ] |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 defines = [ "__ANDROID__" ] | 8 defines = [ "__ANDROID__" ] |
| 9 } | 9 } |
| 10 if (is_clang) { | 10 if (is_clang) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "src/processor/basic_code_modules.cc", | 46 "src/processor/basic_code_modules.cc", |
| 47 "src/processor/basic_code_modules.h", | 47 "src/processor/basic_code_modules.h", |
| 48 "src/processor/basic_source_line_resolver.cc", | 48 "src/processor/basic_source_line_resolver.cc", |
| 49 "src/processor/binarystream.cc", | 49 "src/processor/binarystream.cc", |
| 50 "src/processor/binarystream.h", | 50 "src/processor/binarystream.h", |
| 51 "src/processor/call_stack.cc", | 51 "src/processor/call_stack.cc", |
| 52 "src/processor/cfi_frame_info.cc", | 52 "src/processor/cfi_frame_info.cc", |
| 53 "src/processor/cfi_frame_info.h", | 53 "src/processor/cfi_frame_info.h", |
| 54 "src/processor/disassembler_x86.cc", | 54 "src/processor/disassembler_x86.cc", |
| 55 "src/processor/disassembler_x86.h", | 55 "src/processor/disassembler_x86.h", |
| 56 "src/processor/dump_context.cc", |
| 57 "src/processor/dump_object.cc", |
| 56 "src/processor/exploitability.cc", | 58 "src/processor/exploitability.cc", |
| 57 "src/processor/logging.cc", | 59 "src/processor/logging.cc", |
| 58 "src/processor/logging.h", | 60 "src/processor/logging.h", |
| 59 "src/processor/minidump.cc", | 61 "src/processor/minidump.cc", |
| 60 "src/processor/minidump_processor.cc", | 62 "src/processor/minidump_processor.cc", |
| 61 "src/processor/minidump_stackwalk.cc", | 63 "src/processor/minidump_stackwalk.cc", |
| 62 "src/processor/pathname_stripper.cc", | 64 "src/processor/pathname_stripper.cc", |
| 63 "src/processor/pathname_stripper.h", | 65 "src/processor/pathname_stripper.h", |
| 64 "src/processor/process_state.cc", | 66 "src/processor/process_state.cc", |
| 65 "src/processor/simple_symbol_supplier.cc", | 67 "src/processor/simple_symbol_supplier.cc", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "src/processor/exploitability_win.cc", | 131 "src/processor/exploitability_win.cc", |
| 130 "src/processor/exploitability_win.h", | 132 "src/processor/exploitability_win.h", |
| 131 ] | 133 ] |
| 132 } | 134 } |
| 133 | 135 |
| 134 executable("minidump_dump") { | 136 executable("minidump_dump") { |
| 135 sources = [ | 137 sources = [ |
| 136 "src/processor/basic_code_module.h", | 138 "src/processor/basic_code_module.h", |
| 137 "src/processor/basic_code_modules.cc", | 139 "src/processor/basic_code_modules.cc", |
| 138 "src/processor/basic_code_modules.h", | 140 "src/processor/basic_code_modules.h", |
| 141 "src/processor/dump_context.cc", |
| 142 "src/processor/dump_object.cc", |
| 139 "src/processor/logging.cc", | 143 "src/processor/logging.cc", |
| 140 "src/processor/logging.h", | 144 "src/processor/logging.h", |
| 141 "src/processor/minidump.cc", | 145 "src/processor/minidump.cc", |
| 142 "src/processor/minidump_dump.cc", | 146 "src/processor/minidump_dump.cc", |
| 143 "src/processor/pathname_stripper.cc", | 147 "src/processor/pathname_stripper.cc", |
| 144 "src/processor/pathname_stripper.h", | 148 "src/processor/pathname_stripper.h", |
| 145 ] | 149 ] |
| 146 | 150 |
| 147 configs += [ ":tools_config" ] | 151 configs += [ ":tools_config" ] |
| 148 | 152 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "src/tools/mac/symupload/symupload.m", | 222 "src/tools/mac/symupload/symupload.m", |
| 219 ] | 223 ] |
| 220 | 224 |
| 221 libs = [ "Foundaction.framework" ] | 225 libs = [ "Foundaction.framework" ] |
| 222 } | 226 } |
| 223 } | 227 } |
| 224 | 228 |
| 225 if (is_mac) { | 229 if (is_mac) { |
| 226 static_library("utilities") { | 230 static_library("utilities") { |
| 227 sources = [ | 231 sources = [ |
| 232 "src/client/mac/crash_generation/ConfigFile.mm", |
| 228 "src/client/mac/handler/breakpad_nlist_64.cc", | 233 "src/client/mac/handler/breakpad_nlist_64.cc", |
| 229 "src/client/mac/handler/dynamic_images.cc", | 234 "src/client/mac/handler/dynamic_images.cc", |
| 230 "src/client/mac/handler/minidump_generator.cc", | 235 "src/client/mac/handler/minidump_generator.cc", |
| 231 "src/client/minidump_file_writer.cc", | 236 "src/client/minidump_file_writer.cc", |
| 232 "src/common/convert_UTF.c", | 237 "src/common/convert_UTF.c", |
| 233 "src/common/mac/MachIPC.mm", | 238 "src/common/mac/MachIPC.mm", |
| 234 "src/common/mac/arch_utilities.cc", | 239 "src/common/mac/arch_utilities.cc", |
| 235 "src/common/mac/bootstrap_compat.cc", | 240 "src/common/mac/bootstrap_compat.cc", |
| 236 "src/common/mac/file_id.cc", | 241 "src/common/mac/file_id.cc", |
| 242 "src/common/mac/launch_reporter.cc", |
| 237 "src/common/mac/macho_id.cc", | 243 "src/common/mac/macho_id.cc", |
| 238 "src/common/mac/macho_utilities.cc", | 244 "src/common/mac/macho_utilities.cc", |
| 239 "src/common/mac/macho_walker.cc", | 245 "src/common/mac/macho_walker.cc", |
| 240 "src/common/mac/string_utilities.cc", | 246 "src/common/mac/string_utilities.cc", |
| 241 "src/common/md5.cc", | 247 "src/common/md5.cc", |
| 242 "src/common/simple_string_dictionary.cc", | 248 "src/common/simple_string_dictionary.cc", |
| 243 "src/common/string_conversion.cc", | 249 "src/common/string_conversion.cc", |
| 244 ] | 250 ] |
| 245 | 251 |
| 246 configs += [ ":internal_config" ] | 252 configs += [ ":internal_config" ] |
| 247 } | 253 } |
| 248 | 254 |
| 249 executable("crash_inspector") { | 255 executable("crash_inspector") { |
| 250 sources = [ | 256 sources = [ |
| 251 "src/client/mac/crash_generation/ConfigFile.mm", | |
| 252 "src/client/mac/crash_generation/Inspector.mm", | 257 "src/client/mac/crash_generation/Inspector.mm", |
| 253 "src/client/mac/crash_generation/InspectorMain.mm", | 258 "src/client/mac/crash_generation/InspectorMain.mm", |
| 254 ] | 259 ] |
| 255 | 260 |
| 256 # TODO(GYP): 'mac_real_dsym': 1, | 261 # TODO(GYP): 'mac_real_dsym': 1, |
| 257 | 262 |
| 258 include_dirs = [ | 263 include_dirs = [ |
| 259 "src/client/apple/Framework", | 264 "src/client/apple/Framework", |
| 260 "src/common/mac", | 265 "src/common/mac", |
| 261 "src", | 266 "src", |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 "src/client", | 467 "src/client", |
| 463 "src/third_party/linux/include", | 468 "src/third_party/linux/include", |
| 464 ] | 469 ] |
| 465 } | 470 } |
| 466 | 471 |
| 467 static_library("processor_support") { | 472 static_library("processor_support") { |
| 468 sources = [ | 473 sources = [ |
| 469 "src/common/scoped_ptr.h", | 474 "src/common/scoped_ptr.h", |
| 470 "src/processor/basic_code_modules.cc", | 475 "src/processor/basic_code_modules.cc", |
| 471 "src/processor/basic_code_modules.h", | 476 "src/processor/basic_code_modules.h", |
| 477 "src/processor/dump_context.cc", |
| 478 "src/processor/dump_object.cc", |
| 472 "src/processor/logging.cc", | 479 "src/processor/logging.cc", |
| 473 "src/processor/logging.h", | 480 "src/processor/logging.h", |
| 474 "src/processor/minidump.cc", | 481 "src/processor/minidump.cc", |
| 475 "src/processor/pathname_stripper.cc", | 482 "src/processor/pathname_stripper.cc", |
| 476 "src/processor/pathname_stripper.h", | 483 "src/processor/pathname_stripper.h", |
| 477 ] | 484 ] |
| 478 | 485 |
| 479 include_dirs = [ | 486 include_dirs = [ |
| 480 "src", | 487 "src", |
| 481 "src/client", | 488 "src/client", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 "src/client/windows/handler/exception_handler.h", | 700 "src/client/windows/handler/exception_handler.h", |
| 694 "src/common/windows/guid_string.cc", | 701 "src/common/windows/guid_string.cc", |
| 695 "src/common/windows/guid_string.h", | 702 "src/common/windows/guid_string.h", |
| 696 "src/google_breakpad/common/minidump_format.h", | 703 "src/google_breakpad/common/minidump_format.h", |
| 697 "src/client/windows/crash_generation/minidump_generator.cc", | 704 "src/client/windows/crash_generation/minidump_generator.cc", |
| 698 "src/client/windows/crash_generation/minidump_generator.h", | 705 "src/client/windows/crash_generation/minidump_generator.h", |
| 699 "src/common/windows/string_utils-inl.h", | 706 "src/common/windows/string_utils-inl.h", |
| 700 ] | 707 ] |
| 701 } | 708 } |
| 702 } | 709 } |
| OLD | NEW |