| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 | 9 |
| 10 static_library("lib") { | 10 static_library("lib") { |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 deps = [ | 190 deps = [ |
| 191 ":mus_ws_unittests", | 191 ":mus_ws_unittests", |
| 192 ] | 192 ] |
| 193 if (!is_android) { | 193 if (!is_android) { |
| 194 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] | 194 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] |
| 195 } | 195 } |
| 196 } | 196 } |
| 197 | 197 |
| 198 test("mus_ws_unittests") { | 198 test("mus_ws_unittests") { |
| 199 sources = [ | 199 sources = [ |
| 200 # TODO(fsamuel): Move this test with DisplayCompositor. crbug.com/670454 |
| 201 "../surfaces/display_compositor_unittest.cc", |
| 200 "animation_runner_unittest.cc", | 202 "animation_runner_unittest.cc", |
| 201 "cursor_unittest.cc", | 203 "cursor_unittest.cc", |
| 202 "display_unittest.cc", | 204 "display_unittest.cc", |
| 203 "drag_controller_unittest.cc", | 205 "drag_controller_unittest.cc", |
| 204 "event_dispatcher_unittest.cc", | 206 "event_dispatcher_unittest.cc", |
| 205 "event_matcher_unittest.cc", | 207 "event_matcher_unittest.cc", |
| 206 "focus_controller_unittest.cc", | 208 "focus_controller_unittest.cc", |
| 207 "frame_generator_unittest.cc", | 209 "frame_generator_unittest.cc", |
| 208 "scheduled_animation_group_unittest.cc", | 210 "scheduled_animation_group_unittest.cc", |
| 209 "server_window_compositor_frame_sink_manager_test_api.cc", | 211 "server_window_compositor_frame_sink_manager_test_api.cc", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 "//testing/gtest", | 248 "//testing/gtest", |
| 247 "//third_party/mesa:osmesa", | 249 "//third_party/mesa:osmesa", |
| 248 "//ui/events", | 250 "//ui/events", |
| 249 "//ui/gfx", | 251 "//ui/gfx", |
| 250 "//ui/gfx:test_support", | 252 "//ui/gfx:test_support", |
| 251 "//ui/gfx/geometry", | 253 "//ui/gfx/geometry", |
| 252 "//ui/gfx/geometry/mojo", | 254 "//ui/gfx/geometry/mojo", |
| 253 "//ui/gl", | 255 "//ui/gl", |
| 254 ] | 256 ] |
| 255 | 257 |
| 258 # TODO(fsamuel): Remove this dep. crbug.com/670454 |
| 259 deps += [ "//services/ui/surfaces" ] |
| 260 |
| 256 if (use_x11) { | 261 if (use_x11) { |
| 257 deps += [ "//tools/xdisplaycheck" ] | 262 deps += [ "//tools/xdisplaycheck" ] |
| 258 } | 263 } |
| 259 | 264 |
| 260 data_deps = [ | 265 data_deps = [ |
| 261 ":mus_ws_unittests_app_manifest", | 266 ":mus_ws_unittests_app_manifest", |
| 262 ] | 267 ] |
| 263 } | 268 } |
| 264 | 269 |
| 265 service_manifest("mus_ws_unittests_app_manifest") { | 270 service_manifest("mus_ws_unittests_app_manifest") { |
| 266 name = "mus_ws_unittests_app" | 271 name = "mus_ws_unittests_app" |
| 267 source = "mus_ws_unittests_app_manifest.json" | 272 source = "mus_ws_unittests_app_manifest.json" |
| 268 } | 273 } |
| OLD | NEW |