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