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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "//ui/events:dom_keycode_converter", | 101 "//ui/events:dom_keycode_converter", |
102 "//ui/events:events_base", | 102 "//ui/events:events_base", |
103 "//ui/events:gesture_detection", | 103 "//ui/events:gesture_detection", |
104 "//ui/events:test_support", | 104 "//ui/events:test_support", |
105 "//ui/gfx:test_support", | 105 "//ui/gfx:test_support", |
106 "//ui/gl", | 106 "//ui/gl", |
107 "//ui/gl:test_support", | 107 "//ui/gl:test_support", |
108 "//ui/resources", | 108 "//ui/resources", |
109 "//ui/surface", | 109 "//ui/surface", |
110 "//url", | 110 "//url", |
| 111 "//url/mojo:url_mojom_gurl", |
111 "//v8", | 112 "//v8", |
112 ] | 113 ] |
113 | 114 |
114 if (is_android) { | 115 if (is_android) { |
115 sources -= [ | 116 sources -= [ |
116 "mock_google_streaming_server.cc", | 117 "mock_google_streaming_server.cc", |
117 "mock_google_streaming_server.h", | 118 "mock_google_streaming_server.h", |
118 ] | 119 ] |
119 } | 120 } |
120 | 121 |
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 if (is_android) { | 903 if (is_android) { |
903 deps += [ "//testing/android/native_test:native_test_native_code" ] | 904 deps += [ "//testing/android/native_test:native_test_native_code" ] |
904 } | 905 } |
905 } | 906 } |
906 | 907 |
907 group("fuzzers") { | 908 group("fuzzers") { |
908 deps = [ | 909 deps = [ |
909 "//content/test/fuzzer", | 910 "//content/test/fuzzer", |
910 ] | 911 ] |
911 } | 912 } |
OLD | NEW |