| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "src/tools/mac/symupload/symupload.m", | 218 "src/tools/mac/symupload/symupload.m", |
| 219 ] | 219 ] |
| 220 | 220 |
| 221 libs = [ "Foundaction.framework" ] | 221 libs = [ "Foundaction.framework" ] |
| 222 } | 222 } |
| 223 } | 223 } |
| 224 | 224 |
| 225 if (is_mac) { | 225 if (is_mac) { |
| 226 static_library("utilities") { | 226 static_library("utilities") { |
| 227 sources = [ | 227 sources = [ |
| 228 "src/client/mac/crash_generation/ConfigFile.mm", |
| 228 "src/client/mac/handler/breakpad_nlist_64.cc", | 229 "src/client/mac/handler/breakpad_nlist_64.cc", |
| 229 "src/client/mac/handler/dynamic_images.cc", | 230 "src/client/mac/handler/dynamic_images.cc", |
| 230 "src/client/mac/handler/minidump_generator.cc", | 231 "src/client/mac/handler/minidump_generator.cc", |
| 231 "src/client/minidump_file_writer.cc", | 232 "src/client/minidump_file_writer.cc", |
| 232 "src/common/convert_UTF.c", | 233 "src/common/convert_UTF.c", |
| 233 "src/common/mac/MachIPC.mm", | 234 "src/common/mac/MachIPC.mm", |
| 234 "src/common/mac/arch_utilities.cc", | 235 "src/common/mac/arch_utilities.cc", |
| 235 "src/common/mac/bootstrap_compat.cc", | 236 "src/common/mac/bootstrap_compat.cc", |
| 236 "src/common/mac/file_id.cc", | 237 "src/common/mac/file_id.cc", |
| 238 "src/common/mac/launch_reporter.cc", |
| 237 "src/common/mac/macho_id.cc", | 239 "src/common/mac/macho_id.cc", |
| 238 "src/common/mac/macho_utilities.cc", | 240 "src/common/mac/macho_utilities.cc", |
| 239 "src/common/mac/macho_walker.cc", | 241 "src/common/mac/macho_walker.cc", |
| 240 "src/common/mac/string_utilities.cc", | 242 "src/common/mac/string_utilities.cc", |
| 241 "src/common/md5.cc", | 243 "src/common/md5.cc", |
| 242 "src/common/simple_string_dictionary.cc", | 244 "src/common/simple_string_dictionary.cc", |
| 243 "src/common/string_conversion.cc", | 245 "src/common/string_conversion.cc", |
| 244 ] | 246 ] |
| 245 | 247 |
| 246 configs += [ ":internal_config" ] | 248 configs += [ ":internal_config" ] |
| 247 } | 249 } |
| 248 | 250 |
| 249 executable("crash_inspector") { | 251 executable("crash_inspector") { |
| 250 sources = [ | 252 sources = [ |
| 251 "src/client/mac/crash_generation/ConfigFile.mm", | |
| 252 "src/client/mac/crash_generation/Inspector.mm", | 253 "src/client/mac/crash_generation/Inspector.mm", |
| 253 "src/client/mac/crash_generation/InspectorMain.mm", | 254 "src/client/mac/crash_generation/InspectorMain.mm", |
| 254 ] | 255 ] |
| 255 | 256 |
| 256 # TODO(GYP): 'mac_real_dsym': 1, | 257 # TODO(GYP): 'mac_real_dsym': 1, |
| 257 | 258 |
| 258 include_dirs = [ | 259 include_dirs = [ |
| 259 "src/client/apple/Framework", | 260 "src/client/apple/Framework", |
| 260 "src/common/mac", | 261 "src/common/mac", |
| 261 "src", | 262 "src", |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 "src/client/windows/handler/exception_handler.h", | 694 "src/client/windows/handler/exception_handler.h", |
| 694 "src/common/windows/guid_string.cc", | 695 "src/common/windows/guid_string.cc", |
| 695 "src/common/windows/guid_string.h", | 696 "src/common/windows/guid_string.h", |
| 696 "src/google_breakpad/common/minidump_format.h", | 697 "src/google_breakpad/common/minidump_format.h", |
| 697 "src/client/windows/crash_generation/minidump_generator.cc", | 698 "src/client/windows/crash_generation/minidump_generator.cc", |
| 698 "src/client/windows/crash_generation/minidump_generator.h", | 699 "src/client/windows/crash_generation/minidump_generator.h", |
| 699 "src/common/windows/string_utils-inl.h", | 700 "src/common/windows/string_utils-inl.h", |
| 700 ] | 701 ] |
| 701 } | 702 } |
| 702 } | 703 } |
| OLD | NEW |