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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 ] | 304 ] |
305 deps += [ "//ui/accelerated_widget_mac" ] | 305 deps += [ "//ui/accelerated_widget_mac" ] |
306 } | 306 } |
307 } | 307 } |
308 | 308 |
309 if (is_mac) { | 309 if (is_mac) { |
310 test("macviews_interactive_ui_tests") { | 310 test("macviews_interactive_ui_tests") { |
311 sources = [ | 311 sources = [ |
312 "cocoa/bridged_native_widget_interactive_uitest.mm", | 312 "cocoa/bridged_native_widget_interactive_uitest.mm", |
313 "run_all_unittests.cc", | 313 "run_all_unittests.cc", |
| 314 "run_all_unittests.h", |
| 315 "run_all_unittests_main.cc", |
314 "widget/native_widget_mac_interactive_uitest.mm", | 316 "widget/native_widget_mac_interactive_uitest.mm", |
315 ] | 317 ] |
316 deps = [ | 318 deps = [ |
317 ":test_support", | 319 ":test_support", |
318 ":views", | 320 ":views", |
319 "//base", | 321 "//base", |
320 "//base/test:test_support", | 322 "//base/test:test_support", |
321 "//skia", | 323 "//skia", |
322 "//testing/gtest", | 324 "//testing/gtest", |
323 "//ui/base:test_support", | 325 "//ui/base:test_support", |
324 "//ui/compositor", | 326 "//ui/compositor", |
325 "//ui/events:test_support", | 327 "//ui/events:test_support", |
326 "//ui/gl:test_support", | 328 "//ui/gl:test_support", |
327 "//ui/resources", | 329 "//ui/resources", |
328 "//ui/resources:ui_test_pak", | 330 "//ui/resources:ui_test_pak", |
329 "//ui/strings", | 331 "//ui/strings", |
330 ] | 332 ] |
331 } | 333 } |
332 } | 334 } |
OLD | NEW |