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 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 if (is_linux) { | 787 if (is_linux) { |
788 if (use_dbus) { | 788 if (use_dbus) { |
789 deps += [ "//dbus:test_support" ] | 789 deps += [ "//dbus:test_support" ] |
790 } else { | 790 } else { |
791 sources -= | 791 sources -= |
792 [ "../browser/geolocation/wifi_data_provider_linux_unittest.cc" ] | 792 [ "../browser/geolocation/wifi_data_provider_linux_unittest.cc" ] |
793 } | 793 } |
794 } | 794 } |
795 if (is_win) { | 795 if (is_win) { |
796 deps += [ "//third_party/iaccessible2" ] | 796 deps += [ "//third_party/iaccessible2" ] |
| 797 libs = [ "dwrite.lib" ] |
797 } | 798 } |
798 if (is_mac) { | 799 if (is_mac) { |
799 # These flags are needed to run the test on Mac. | 800 # These flags are needed to run the test on Mac. |
800 # Search for comments about "xcode_settings" in chrome_tests.gypi. | 801 # Search for comments about "xcode_settings" in chrome_tests.gypi. |
801 ldflags = [ "-Wl,-ObjC" ] | 802 ldflags = [ "-Wl,-ObjC" ] |
802 | 803 |
803 deps += [ | 804 deps += [ |
804 "//third_party/mozilla", | 805 "//third_party/mozilla", |
805 "//third_party/ocmock", | 806 "//third_party/ocmock", |
806 "//ui/accelerated_widget_mac", | 807 "//ui/accelerated_widget_mac", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 fuzzer_test("renderer_fuzzer") { | 924 fuzzer_test("renderer_fuzzer") { |
924 sources = [ | 925 sources = [ |
925 "renderer_fuzzer.cc", | 926 "renderer_fuzzer.cc", |
926 ] | 927 ] |
927 deps = [ | 928 deps = [ |
928 ":test_support", | 929 ":test_support", |
929 "//content/shell:content_shell_lib", | 930 "//content/shell:content_shell_lib", |
930 ] | 931 ] |
931 dict = "data/fuzzer_dictionaries/renderer_fuzzer.dict" | 932 dict = "data/fuzzer_dictionaries/renderer_fuzzer.dict" |
932 } | 933 } |
OLD | NEW |