| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 config("tools_config") { | 7 config("tools_config") { |
| 8 include_dirs = [ | 8 include_dirs = [ |
| 9 "src", | 9 "src", |
| 10 "src/third_party", | 10 "src/third_party", |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 "src/common/simple_string_dictionary.cc", | 506 "src/common/simple_string_dictionary.cc", |
| 507 "src/common/simple_string_dictionary.h", | 507 "src/common/simple_string_dictionary.h", |
| 508 "src/common/string_conversion.cc", | 508 "src/common/string_conversion.cc", |
| 509 "src/common/string_conversion.h", | 509 "src/common/string_conversion.h", |
| 510 ] | 510 ] |
| 511 | 511 |
| 512 configs -= [ "//build/config/compiler:chromium_code" ] | 512 configs -= [ "//build/config/compiler:chromium_code" ] |
| 513 configs += [ "//build/config/compiler:no_chromium_code" ] | 513 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 514 public_configs = [ ":client_config" ] | 514 public_configs = [ ":client_config" ] |
| 515 | 515 |
| 516 if (current_cpu == "arm" && is_chromeos) { | 516 if (current_cpu == "arm" && is_chromeos_ui) { |
| 517 # Avoid running out of registers in | 517 # Avoid running out of registers in |
| 518 # linux_syscall_support.h:sys_clone()'s inline assembly. | 518 # linux_syscall_support.h:sys_clone()'s inline assembly. |
| 519 cflags = [ "-marm" ] | 519 cflags = [ "-marm" ] |
| 520 } | 520 } |
| 521 | 521 |
| 522 if (is_android) { | 522 if (is_android) { |
| 523 sources += [ "src/common/android/breakpad_getcontext.S" ] | 523 sources += [ "src/common/android/breakpad_getcontext.S" ] |
| 524 } | 524 } |
| 525 | 525 |
| 526 libs = [ "dl" ] | 526 libs = [ "dl" ] |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 sources = [ | 785 sources = [ |
| 786 "src/client/windows/sender/crash_report_sender.cc", | 786 "src/client/windows/sender/crash_report_sender.cc", |
| 787 "src/client/windows/sender/crash_report_sender.h", | 787 "src/client/windows/sender/crash_report_sender.h", |
| 788 "src/common/windows/http_upload.cc", | 788 "src/common/windows/http_upload.cc", |
| 789 "src/common/windows/http_upload.h", | 789 "src/common/windows/http_upload.h", |
| 790 ] | 790 ] |
| 791 configs += [ ":sender_config" ] | 791 configs += [ ":sender_config" ] |
| 792 public_configs = [ ":sender_config" ] | 792 public_configs = [ ":sender_config" ] |
| 793 } | 793 } |
| 794 } | 794 } |
| OLD | NEW |