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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
10 [ rebase_path("views.gyp") ], | 10 [ rebase_path("views.gyp") ], |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 | 188 |
189 test("views_unittests") { | 189 test("views_unittests") { |
190 sources = gypi_values.views_unittests_sources | 190 sources = gypi_values.views_unittests_sources |
191 | 191 |
192 deps = [ | 192 deps = [ |
193 ":test_support", | 193 ":test_support", |
194 "//base", | 194 "//base", |
195 "//base:i18n", | 195 "//base:i18n", |
196 "//base/allocator", | 196 "//base/allocator", |
197 "//base/test:test_support", | 197 "//base/test:test_support", |
| 198 "//cc", |
198 "//skia", | 199 "//skia", |
199 "//testing/gtest", | 200 "//testing/gtest", |
200 "//third_party/icu", | 201 "//third_party/icu", |
201 "//ui/accessibility", | 202 "//ui/accessibility", |
202 "//ui/base", | 203 "//ui/base", |
203 "//ui/base:test_support", | 204 "//ui/base:test_support", |
204 "//ui/base/ime", | 205 "//ui/base/ime", |
205 "//ui/compositor:test_support", | 206 "//ui/compositor:test_support", |
| 207 "//ui/events:dom_keycode_converter", |
206 "//ui/events:events_base", | 208 "//ui/events:events_base", |
207 "//ui/events:test_support", | 209 "//ui/events:test_support", |
208 "//ui/events/platform", | 210 "//ui/events/platform", |
209 "//ui/gfx", | 211 "//ui/gfx", |
210 "//ui/gfx/geometry", | 212 "//ui/gfx/geometry", |
211 "//ui/gl", | 213 "//ui/gl", |
| 214 "//ui/gl:test_support", |
212 "//ui/resources", | 215 "//ui/resources", |
213 "//ui/strings", | 216 "//ui/strings", |
214 "//url", | 217 "//url", |
215 ] | 218 ] |
216 | 219 |
217 data_deps = [ | 220 data_deps = [ |
218 "//ui/resources:ui_test_pak", | 221 "//ui/resources:ui_test_pak", |
219 ] | 222 ] |
220 | 223 |
221 if (is_win) { | 224 if (is_win) { |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 "//skia", | 305 "//skia", |
303 "//testing/gtest", | 306 "//testing/gtest", |
304 "//ui/base:test_support", | 307 "//ui/base:test_support", |
305 "//ui/compositor", | 308 "//ui/compositor", |
306 "//ui/resources", | 309 "//ui/resources", |
307 "//ui/resources:ui_test_pak", | 310 "//ui/resources:ui_test_pak", |
308 "//ui/strings", | 311 "//ui/strings", |
309 ] | 312 ] |
310 } | 313 } |
311 } | 314 } |
OLD | NEW |