| 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 include_dirs = [ "src" ] | 392 include_dirs = [ "src" ] |
| 393 } | 393 } |
| 394 } | 394 } |
| 395 | 395 |
| 396 static_library("client") { | 396 static_library("client") { |
| 397 # Want all these sources for both Linux and Android. | 397 # Want all these sources for both Linux and Android. |
| 398 set_sources_assignment_filter([]) | 398 set_sources_assignment_filter([]) |
| 399 sources = [ | 399 sources = [ |
| 400 "src/client/linux/crash_generation/crash_generation_client.cc", | 400 "src/client/linux/crash_generation/crash_generation_client.cc", |
| 401 "src/client/linux/crash_generation/crash_generation_client.h", | 401 "src/client/linux/crash_generation/crash_generation_client.h", |
| 402 "src/client/linux/dump_writer_common/mapping_info.h", |
| 403 "src/client/linux/dump_writer_common/seccomp_unwinder.cc", |
| 404 "src/client/linux/dump_writer_common/seccomp_unwinder.h", |
| 405 "src/client/linux/dump_writer_common/thread_info.cc", |
| 406 "src/client/linux/dump_writer_common/thread_info.h", |
| 407 "src/client/linux/dump_writer_common/ucontext_reader.cc", |
| 408 "src/client/linux/dump_writer_common/ucontext_reader.h", |
| 402 "src/client/linux/handler/exception_handler.cc", | 409 "src/client/linux/handler/exception_handler.cc", |
| 403 "src/client/linux/handler/exception_handler.h", | 410 "src/client/linux/handler/exception_handler.h", |
| 404 "src/client/linux/handler/minidump_descriptor.cc", | 411 "src/client/linux/handler/minidump_descriptor.cc", |
| 405 "src/client/linux/handler/minidump_descriptor.h", | 412 "src/client/linux/handler/minidump_descriptor.h", |
| 406 "src/client/linux/log/log.cc", | 413 "src/client/linux/log/log.cc", |
| 407 "src/client/linux/log/log.h", | 414 "src/client/linux/log/log.h", |
| 408 "src/client/linux/minidump_writer/cpu_set.h", | 415 "src/client/linux/minidump_writer/cpu_set.h", |
| 409 "src/client/linux/minidump_writer/directory_reader.h", | 416 "src/client/linux/minidump_writer/directory_reader.h", |
| 410 "src/client/linux/minidump_writer/line_reader.h", | 417 "src/client/linux/minidump_writer/line_reader.h", |
| 411 "src/client/linux/minidump_writer/linux_core_dumper.cc", | 418 "src/client/linux/minidump_writer/linux_core_dumper.cc", |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 "src/client/windows/handler/exception_handler.h", | 709 "src/client/windows/handler/exception_handler.h", |
| 703 "src/common/windows/guid_string.cc", | 710 "src/common/windows/guid_string.cc", |
| 704 "src/common/windows/guid_string.h", | 711 "src/common/windows/guid_string.h", |
| 705 "src/google_breakpad/common/minidump_format.h", | 712 "src/google_breakpad/common/minidump_format.h", |
| 706 "src/client/windows/crash_generation/minidump_generator.cc", | 713 "src/client/windows/crash_generation/minidump_generator.cc", |
| 707 "src/client/windows/crash_generation/minidump_generator.h", | 714 "src/client/windows/crash_generation/minidump_generator.h", |
| 708 "src/common/windows/string_utils-inl.h", | 715 "src/common/windows/string_utils-inl.h", |
| 709 ] | 716 ] |
| 710 } | 717 } |
| 711 } | 718 } |
| OLD | NEW |