| 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", | 20 "cursor_location_manager.cc", |
| 21 "cursor_location_manager.h", | 21 "cursor_location_manager.h", |
| 22 "default_access_policy.cc", | 22 "default_access_policy.cc", |
| 23 "default_access_policy.h", | 23 "default_access_policy.h", |
| 24 "display.cc", | 24 "display.cc", |
| 25 "display.h", | 25 "display.h", |
| 26 "display_binding.cc", | 26 "display_binding.cc", |
| 27 "display_binding.h", | 27 "display_binding.h", |
| 28 "display_client_compositor_frame_sink.cc", |
| 29 "display_client_compositor_frame_sink.h", |
| 28 "display_manager.cc", | 30 "display_manager.cc", |
| 29 "display_manager.h", | 31 "display_manager.h", |
| 30 "drag_controller.cc", | 32 "drag_controller.cc", |
| 31 "drag_controller.h", | 33 "drag_controller.h", |
| 32 "drag_cursor_updater.h", | 34 "drag_cursor_updater.h", |
| 33 "drag_source.h", | 35 "drag_source.h", |
| 34 "drag_target_connection.h", | 36 "drag_target_connection.h", |
| 35 "event_dispatcher.cc", | 37 "event_dispatcher.cc", |
| 36 "event_dispatcher.h", | 38 "event_dispatcher.h", |
| 37 "event_dispatcher_delegate.h", | 39 "event_dispatcher_delegate.h", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 service_manifest("mus_ws_unittests_app_manifest") { | 265 service_manifest("mus_ws_unittests_app_manifest") { |
| 264 name = "mus_ws_unittests_app" | 266 name = "mus_ws_unittests_app" |
| 265 source = "mus_ws_unittests_app_manifest.json" | 267 source = "mus_ws_unittests_app_manifest.json" |
| 266 } | 268 } |
| 267 | 269 |
| 268 catalog("mus_ws_unittests_catalog") { | 270 catalog("mus_ws_unittests_catalog") { |
| 269 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 271 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 270 | 272 |
| 271 standalone_services = [ "//services/ui:manifest" ] | 273 standalone_services = [ "//services/ui:manifest" ] |
| 272 } | 274 } |
| OLD | NEW |