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