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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 if (is_linux) { | 785 if (is_linux) { |
786 if (use_dbus) { | 786 if (use_dbus) { |
787 deps += [ "//dbus:test_support" ] | 787 deps += [ "//dbus:test_support" ] |
788 } else { | 788 } else { |
789 sources -= | 789 sources -= |
790 [ "../browser/geolocation/wifi_data_provider_linux_unittest.cc" ] | 790 [ "../browser/geolocation/wifi_data_provider_linux_unittest.cc" ] |
791 } | 791 } |
792 } | 792 } |
793 if (is_win) { | 793 if (is_win) { |
794 deps += [ "//third_party/iaccessible2" ] | 794 deps += [ "//third_party/iaccessible2" ] |
| 795 libs = [ "dwrite.lib" ] |
795 } | 796 } |
796 if (is_mac) { | 797 if (is_mac) { |
797 # These flags are needed to run the test on Mac. | 798 # These flags are needed to run the test on Mac. |
798 # Search for comments about "xcode_settings" in chrome_tests.gypi. | 799 # Search for comments about "xcode_settings" in chrome_tests.gypi. |
799 ldflags = [ "-Wl,-ObjC" ] | 800 ldflags = [ "-Wl,-ObjC" ] |
800 | 801 |
801 deps += [ | 802 deps += [ |
802 "//third_party/mozilla", | 803 "//third_party/mozilla", |
803 "//third_party/ocmock", | 804 "//third_party/ocmock", |
804 "//ui/accelerated_widget_mac", | 805 "//ui/accelerated_widget_mac", |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 | 921 |
921 fuzzer_test("renderer_fuzzer") { | 922 fuzzer_test("renderer_fuzzer") { |
922 sources = [ | 923 sources = [ |
923 "renderer_fuzzer.cc", | 924 "renderer_fuzzer.cc", |
924 ] | 925 ] |
925 deps = [ | 926 deps = [ |
926 ":test_support", | 927 ":test_support", |
927 "//content/shell:content_shell_lib", | 928 "//content/shell:content_shell_lib", |
928 ] | 929 ] |
929 } | 930 } |
OLD | NEW |