| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 | 218 |
| 219 service_test("mus_ws_unittests") { | 219 service_test("mus_ws_unittests") { |
| 220 sources = [ | 220 sources = [ |
| 221 "cursor_location_manager_unittest.cc", | 221 "cursor_location_manager_unittest.cc", |
| 222 "cursor_unittest.cc", | 222 "cursor_unittest.cc", |
| 223 "display_unittest.cc", | 223 "display_unittest.cc", |
| 224 "drag_controller_unittest.cc", | 224 "drag_controller_unittest.cc", |
| 225 "event_dispatcher_unittest.cc", | 225 "event_dispatcher_unittest.cc", |
| 226 "event_matcher_unittest.cc", | 226 "event_matcher_unittest.cc", |
| 227 "focus_controller_unittest.cc", | 227 "focus_controller_unittest.cc", |
| 228 "frame_generator_unittest.cc", |
| 228 "server_window_drawn_tracker_unittest.cc", | 229 "server_window_drawn_tracker_unittest.cc", |
| 229 "test_server_window_delegate.cc", | 230 "test_server_window_delegate.cc", |
| 230 "test_server_window_delegate.h", | 231 "test_server_window_delegate.h", |
| 231 "test_utils.cc", | 232 "test_utils.cc", |
| 232 "test_utils.h", | 233 "test_utils.h", |
| 233 "transient_windows_unittest.cc", | 234 "transient_windows_unittest.cc", |
| 234 "user_activity_monitor_unittest.cc", | 235 "user_activity_monitor_unittest.cc", |
| 235 "user_display_manager_unittest.cc", | 236 "user_display_manager_unittest.cc", |
| 236 "window_coordinate_conversions_unittest.cc", | 237 "window_coordinate_conversions_unittest.cc", |
| 237 "window_finder_unittest.cc", | 238 "window_finder_unittest.cc", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 service_manifest("mus_ws_unittests_app_manifest") { | 281 service_manifest("mus_ws_unittests_app_manifest") { |
| 281 name = "mus_ws_unittests_app" | 282 name = "mus_ws_unittests_app" |
| 282 source = "mus_ws_unittests_app_manifest.json" | 283 source = "mus_ws_unittests_app_manifest.json" |
| 283 } | 284 } |
| 284 | 285 |
| 285 catalog("mus_ws_unittests_catalog") { | 286 catalog("mus_ws_unittests_catalog") { |
| 286 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 287 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 287 | 288 |
| 288 standalone_services = [ "//services/ui:manifest" ] | 289 standalone_services = [ "//services/ui:manifest" ] |
| 289 } | 290 } |
| OLD | NEW |