Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: content/test/BUILD.gn

Issue 2029343002: Link to DirectWrite directly, instead of calling LoadLibrary (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Link content_unittests to dwrite.dll Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 if (is_linux) { 781 if (is_linux) {
782 if (use_dbus) { 782 if (use_dbus) {
783 deps += [ "//dbus:test_support" ] 783 deps += [ "//dbus:test_support" ]
784 } else { 784 } else {
785 sources -= 785 sources -=
786 [ "../browser/geolocation/wifi_data_provider_linux_unittest.cc" ] 786 [ "../browser/geolocation/wifi_data_provider_linux_unittest.cc" ]
787 } 787 }
788 } 788 }
789 if (is_win) { 789 if (is_win) {
790 deps += [ "//third_party/iaccessible2" ] 790 deps += [ "//third_party/iaccessible2" ]
791 libs = [ "dwrite.lib" ]
791 } 792 }
792 if (is_mac) { 793 if (is_mac) {
793 # These flags are needed to run the test on Mac. 794 # These flags are needed to run the test on Mac.
794 # Search for comments about "xcode_settings" in chrome_tests.gypi. 795 # Search for comments about "xcode_settings" in chrome_tests.gypi.
795 ldflags = [ "-Wl,-ObjC" ] 796 ldflags = [ "-Wl,-ObjC" ]
796 797
797 deps += [ 798 deps += [
798 "//third_party/mozilla", 799 "//third_party/mozilla",
799 "//third_party/ocmock", 800 "//third_party/ocmock",
800 "//ui/accelerated_widget_mac", 801 "//ui/accelerated_widget_mac",
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 917
917 fuzzer_test("renderer_fuzzer") { 918 fuzzer_test("renderer_fuzzer") {
918 sources = [ 919 sources = [
919 "renderer_fuzzer.cc", 920 "renderer_fuzzer.cc",
920 ] 921 ]
921 deps = [ 922 deps = [
922 ":test_support", 923 ":test_support",
923 "//content/shell:content_shell_lib", 924 "//content/shell:content_shell_lib",
924 ] 925 ]
925 } 926 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698