| 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") |
| 11 | 11 |
| 12 static_library("lib") { | 12 static_library("lib") { |
| 13 sources = [ | 13 sources = [ |
| 14 "accelerator.cc", | 14 "accelerator.cc", |
| 15 "accelerator.h", | 15 "accelerator.h", |
| 16 "access_policy.h", | 16 "access_policy.h", |
| 17 "access_policy_delegate.h", | 17 "access_policy_delegate.h", |
| 18 "accessibility_manager.cc", | 18 "accessibility_manager.cc", |
| 19 "accessibility_manager.h", | 19 "accessibility_manager.h", |
| 20 "cursor_location_manager.cc", |
| 21 "cursor_location_manager.h", |
| 20 "default_access_policy.cc", | 22 "default_access_policy.cc", |
| 21 "default_access_policy.h", | 23 "default_access_policy.h", |
| 22 "display.cc", | 24 "display.cc", |
| 23 "display.h", | 25 "display.h", |
| 24 "display_binding.cc", | 26 "display_binding.cc", |
| 25 "display_binding.h", | 27 "display_binding.h", |
| 26 "display_manager.cc", | 28 "display_manager.cc", |
| 27 "display_manager.h", | 29 "display_manager.h", |
| 28 "drag_controller.cc", | 30 "drag_controller.cc", |
| 29 "drag_controller.h", | 31 "drag_controller.h", |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 deps = [ | 199 deps = [ |
| 198 ":mus_ws_unittests", | 200 ":mus_ws_unittests", |
| 199 ] | 201 ] |
| 200 if (!is_android) { | 202 if (!is_android) { |
| 201 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] | 203 deps += [ "//services/ui/public/cpp/tests:mus_public_unittests" ] |
| 202 } | 204 } |
| 203 } | 205 } |
| 204 | 206 |
| 205 service_test("mus_ws_unittests") { | 207 service_test("mus_ws_unittests") { |
| 206 sources = [ | 208 sources = [ |
| 209 "cursor_location_manager_unittest.cc", |
| 207 "cursor_unittest.cc", | 210 "cursor_unittest.cc", |
| 208 "display_unittest.cc", | 211 "display_unittest.cc", |
| 209 "drag_controller_unittest.cc", | 212 "drag_controller_unittest.cc", |
| 210 "event_dispatcher_unittest.cc", | 213 "event_dispatcher_unittest.cc", |
| 211 "event_matcher_unittest.cc", | 214 "event_matcher_unittest.cc", |
| 212 "focus_controller_unittest.cc", | 215 "focus_controller_unittest.cc", |
| 213 "frame_generator_unittest.cc", | 216 "frame_generator_unittest.cc", |
| 214 "server_window_compositor_frame_sink_manager_test_api.cc", | 217 "server_window_compositor_frame_sink_manager_test_api.cc", |
| 215 "server_window_compositor_frame_sink_manager_test_api.h", | 218 "server_window_compositor_frame_sink_manager_test_api.h", |
| 216 "server_window_drawn_tracker_unittest.cc", | 219 "server_window_drawn_tracker_unittest.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 service_manifest("mus_ws_unittests_app_manifest") { | 266 service_manifest("mus_ws_unittests_app_manifest") { |
| 264 name = "mus_ws_unittests_app" | 267 name = "mus_ws_unittests_app" |
| 265 source = "mus_ws_unittests_app_manifest.json" | 268 source = "mus_ws_unittests_app_manifest.json" |
| 266 } | 269 } |
| 267 | 270 |
| 268 catalog("mus_ws_unittests_catalog") { | 271 catalog("mus_ws_unittests_catalog") { |
| 269 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 272 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 270 | 273 |
| 271 standalone_services = [ "//services/ui:manifest" ] | 274 standalone_services = [ "//services/ui:manifest" ] |
| 272 } | 275 } |
| OLD | NEW |