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 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 | 611 |
612 if (is_clang) { | 612 if (is_clang) { |
613 # See http://crbug.com/138571#c18 | 613 # See http://crbug.com/138571#c18 |
614 cflags = [ "-Wno-unused-value" ] | 614 cflags = [ "-Wno-unused-value" ] |
615 } | 615 } |
616 | 616 |
617 if (is_android) { | 617 if (is_android) { |
618 sources += [ "src/common/android/breakpad_getcontext_unittest.cc" ] | 618 sources += [ "src/common/android/breakpad_getcontext_unittest.cc" ] |
619 libs = [ "log" ] | 619 libs = [ "log" ] |
620 include_dirs += [ "src/common/android/include" ] | 620 include_dirs += [ "src/common/android/include" ] |
| 621 isolate_file = "breakpad_unittests.isolate" |
621 } | 622 } |
622 } | 623 } |
623 | 624 |
624 executable("linux_dumper_unittest_helper") { | 625 executable("linux_dumper_unittest_helper") { |
625 testonly = true | 626 testonly = true |
626 sources = [ | 627 sources = [ |
627 "src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc", | 628 "src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc", |
628 ] | 629 ] |
629 deps = [ | 630 deps = [ |
630 ":processor_support", | 631 ":processor_support", |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 sources = [ | 777 sources = [ |
777 "src/client/windows/sender/crash_report_sender.cc", | 778 "src/client/windows/sender/crash_report_sender.cc", |
778 "src/client/windows/sender/crash_report_sender.h", | 779 "src/client/windows/sender/crash_report_sender.h", |
779 "src/common/windows/http_upload.cc", | 780 "src/common/windows/http_upload.cc", |
780 "src/common/windows/http_upload.h", | 781 "src/common/windows/http_upload.h", |
781 ] | 782 ] |
782 configs += [ ":sender_config" ] | 783 configs += [ ":sender_config" ] |
783 public_configs = [ ":sender_config" ] | 784 public_configs = [ ":sender_config" ] |
784 } | 785 } |
785 } | 786 } |
OLD | NEW |