| 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/catalog/public/tools/catalog.gni") | 7 import("//services/catalog/public/tools/catalog.gni") |
| 8 import("//services/service_manager/public/cpp/service.gni") | 8 import("//services/service_manager/public/cpp/service.gni") |
| 9 import("//services/service_manager/public/service_manifest.gni") | 9 import("//services/service_manager/public/service_manifest.gni") |
| 10 import("//services/service_manager/public/tools/test/service_test.gni") | 10 import("//services/service_manager/public/tools/test/service_test.gni") |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 206 |
| 207 service_test("mus_ws_unittests") { | 207 service_test("mus_ws_unittests") { |
| 208 sources = [ | 208 sources = [ |
| 209 "cursor_location_manager_unittest.cc", | 209 "cursor_location_manager_unittest.cc", |
| 210 "cursor_unittest.cc", | 210 "cursor_unittest.cc", |
| 211 "display_unittest.cc", | 211 "display_unittest.cc", |
| 212 "drag_controller_unittest.cc", | 212 "drag_controller_unittest.cc", |
| 213 "event_dispatcher_unittest.cc", | 213 "event_dispatcher_unittest.cc", |
| 214 "event_matcher_unittest.cc", | 214 "event_matcher_unittest.cc", |
| 215 "focus_controller_unittest.cc", | 215 "focus_controller_unittest.cc", |
| 216 "frame_generator_unittest.cc", |
| 216 "server_window_compositor_frame_sink_manager_test_api.cc", | 217 "server_window_compositor_frame_sink_manager_test_api.cc", |
| 217 "server_window_compositor_frame_sink_manager_test_api.h", | 218 "server_window_compositor_frame_sink_manager_test_api.h", |
| 218 "server_window_drawn_tracker_unittest.cc", | 219 "server_window_drawn_tracker_unittest.cc", |
| 219 "test_server_window_delegate.cc", | 220 "test_server_window_delegate.cc", |
| 220 "test_server_window_delegate.h", | 221 "test_server_window_delegate.h", |
| 221 "test_utils.cc", | 222 "test_utils.cc", |
| 222 "test_utils.h", | 223 "test_utils.h", |
| 223 "transient_windows_unittest.cc", | 224 "transient_windows_unittest.cc", |
| 224 "user_activity_monitor_unittest.cc", | 225 "user_activity_monitor_unittest.cc", |
| 225 "user_display_manager_unittest.cc", | 226 "user_display_manager_unittest.cc", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 service_manifest("mus_ws_unittests_app_manifest") { | 266 service_manifest("mus_ws_unittests_app_manifest") { |
| 266 name = "mus_ws_unittests_app" | 267 name = "mus_ws_unittests_app" |
| 267 source = "mus_ws_unittests_app_manifest.json" | 268 source = "mus_ws_unittests_app_manifest.json" |
| 268 } | 269 } |
| 269 | 270 |
| 270 catalog("mus_ws_unittests_catalog") { | 271 catalog("mus_ws_unittests_catalog") { |
| 271 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 272 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 272 | 273 |
| 273 standalone_services = [ "//services/ui:manifest" ] | 274 standalone_services = [ "//services/ui:manifest" ] |
| 274 } | 275 } |
| OLD | NEW |