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("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 "//content") | 772 "//content") |
773 } | 773 } |
774 | 774 |
775 if (is_linux) { | 775 if (is_linux) { |
776 if (use_dbus) { | 776 if (use_dbus) { |
777 deps += [ "//dbus:test_support" ] | 777 deps += [ "//dbus:test_support" ] |
778 } | 778 } |
779 } | 779 } |
780 if (is_win) { | 780 if (is_win) { |
781 deps += [ "//third_party/iaccessible2" ] | 781 deps += [ "//third_party/iaccessible2" ] |
| 782 libs = [ "dwrite.lib" ] |
782 } | 783 } |
783 if (is_mac) { | 784 if (is_mac) { |
784 # These flags are needed to run the test on Mac. | 785 # These flags are needed to run the test on Mac. |
785 # Search for comments about "xcode_settings" in chrome_tests.gypi. | 786 # Search for comments about "xcode_settings" in chrome_tests.gypi. |
786 ldflags = [ "-Wl,-ObjC" ] | 787 ldflags = [ "-Wl,-ObjC" ] |
787 | 788 |
788 deps += [ | 789 deps += [ |
789 "//third_party/mozilla", | 790 "//third_party/mozilla", |
790 "//third_party/ocmock", | 791 "//third_party/ocmock", |
791 "//ui/accelerated_widget_mac", | 792 "//ui/accelerated_widget_mac", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
901 if (is_android) { | 902 if (is_android) { |
902 deps += [ "//testing/android/native_test:native_test_native_code" ] | 903 deps += [ "//testing/android/native_test:native_test_native_code" ] |
903 } | 904 } |
904 } | 905 } |
905 | 906 |
906 group("fuzzers") { | 907 group("fuzzers") { |
907 deps = [ | 908 deps = [ |
908 "//content/test/fuzzer", | 909 "//content/test/fuzzer", |
909 ] | 910 ] |
910 } | 911 } |
OLD | NEW |