Chromium Code Reviews| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 189 deps = [ | 189 deps = [ |
| 190 ":mus_ws_unittests", | 190 ":mus_ws_unittests", |
| 191 ] | 191 ] |
| 192 if (!is_android) { | 192 if (!is_android) { |
| 193 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] | 193 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] |
| 194 } | 194 } |
| 195 } | 195 } |
| 196 | 196 |
| 197 test("mus_ws_unittests") { | 197 test("mus_ws_unittests") { |
| 198 sources = [ | 198 sources = [ |
| 199 # TODO(fsamuel): Move this test with DisplayCompositor. | |
|
vmpstr
2016/12/01 21:15:23
Can you file a bug for this if one doesn't exist,
kylechar
2016/12/01 21:53:29
Done.
| |
| 200 "../surfaces/display_compositor_unittest.cc", | |
| 199 "animation_runner_unittest.cc", | 201 "animation_runner_unittest.cc", |
| 200 "cursor_unittest.cc", | 202 "cursor_unittest.cc", |
| 201 "display_unittest.cc", | 203 "display_unittest.cc", |
| 202 "drag_controller_unittest.cc", | 204 "drag_controller_unittest.cc", |
| 203 "event_dispatcher_unittest.cc", | 205 "event_dispatcher_unittest.cc", |
| 204 "event_matcher_unittest.cc", | 206 "event_matcher_unittest.cc", |
| 205 "focus_controller_unittest.cc", | 207 "focus_controller_unittest.cc", |
| 206 "frame_generator_unittest.cc", | 208 "frame_generator_unittest.cc", |
| 207 "scheduled_animation_group_unittest.cc", | 209 "scheduled_animation_group_unittest.cc", |
| 208 "server_window_compositor_frame_sink_manager_test_api.cc", | 210 "server_window_compositor_frame_sink_manager_test_api.cc", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 258 | 260 |
| 259 data_deps = [ | 261 data_deps = [ |
| 260 ":mus_ws_unittests_app_manifest", | 262 ":mus_ws_unittests_app_manifest", |
| 261 ] | 263 ] |
| 262 } | 264 } |
| 263 | 265 |
| 264 service_manifest("mus_ws_unittests_app_manifest") { | 266 service_manifest("mus_ws_unittests_app_manifest") { |
| 265 name = "mus_ws_unittests_app" | 267 name = "mus_ws_unittests_app" |
| 266 source = "mus_ws_unittests_app_manifest.json" | 268 source = "mus_ws_unittests_app_manifest.json" |
| 267 } | 269 } |
| OLD | NEW |