| 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 # Breakpad rev 583 introduced this flag. | 387 # Breakpad rev 583 introduced this flag. |
| 388 # Using this define, stabs_reader.h will include a.out.h to | 388 # Using this define, stabs_reader.h will include a.out.h to |
| 389 # build on Linux. | 389 # build on Linux. |
| 390 defines = [ "HAVE_A_OUT_H" ] | 390 defines = [ "HAVE_A_OUT_H" ] |
| 391 | 391 |
| 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. |
| 398 set_sources_assignment_filter([]) |
| 397 sources = [ | 399 sources = [ |
| 398 "src/client/linux/crash_generation/crash_generation_client.cc", | 400 "src/client/linux/crash_generation/crash_generation_client.cc", |
| 399 "src/client/linux/crash_generation/crash_generation_client.h", | 401 "src/client/linux/crash_generation/crash_generation_client.h", |
| 400 "src/client/linux/handler/exception_handler.cc", | 402 "src/client/linux/handler/exception_handler.cc", |
| 401 "src/client/linux/handler/exception_handler.h", | 403 "src/client/linux/handler/exception_handler.h", |
| 402 "src/client/linux/handler/minidump_descriptor.cc", | 404 "src/client/linux/handler/minidump_descriptor.cc", |
| 403 "src/client/linux/handler/minidump_descriptor.h", | 405 "src/client/linux/handler/minidump_descriptor.h", |
| 404 "src/client/linux/log/log.cc", | 406 "src/client/linux/log/log.cc", |
| 405 "src/client/linux/log/log.h", | 407 "src/client/linux/log/log.h", |
| 406 "src/client/linux/minidump_writer/cpu_set.h", | 408 "src/client/linux/minidump_writer/cpu_set.h", |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 "src/client/windows/handler/exception_handler.h", | 702 "src/client/windows/handler/exception_handler.h", |
| 701 "src/common/windows/guid_string.cc", | 703 "src/common/windows/guid_string.cc", |
| 702 "src/common/windows/guid_string.h", | 704 "src/common/windows/guid_string.h", |
| 703 "src/google_breakpad/common/minidump_format.h", | 705 "src/google_breakpad/common/minidump_format.h", |
| 704 "src/client/windows/crash_generation/minidump_generator.cc", | 706 "src/client/windows/crash_generation/minidump_generator.cc", |
| 705 "src/client/windows/crash_generation/minidump_generator.h", | 707 "src/client/windows/crash_generation/minidump_generator.h", |
| 706 "src/common/windows/string_utils-inl.h", | 708 "src/common/windows/string_utils-inl.h", |
| 707 ] | 709 ] |
| 708 } | 710 } |
| 709 } | 711 } |
| OLD | NEW |