| 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 11 matching lines...) Expand all Loading... |
| 22 "accessibility_manager.cc", | 22 "accessibility_manager.cc", |
| 23 "accessibility_manager.h", | 23 "accessibility_manager.h", |
| 24 "cursor_location_manager.cc", | 24 "cursor_location_manager.cc", |
| 25 "cursor_location_manager.h", | 25 "cursor_location_manager.h", |
| 26 "default_access_policy.cc", | 26 "default_access_policy.cc", |
| 27 "default_access_policy.h", | 27 "default_access_policy.h", |
| 28 "display.cc", | 28 "display.cc", |
| 29 "display.h", | 29 "display.h", |
| 30 "display_binding.cc", | 30 "display_binding.cc", |
| 31 "display_binding.h", | 31 "display_binding.h", |
| 32 "display_client_compositor_frame_sink.cc", |
| 33 "display_client_compositor_frame_sink.h", |
| 32 "display_manager.cc", | 34 "display_manager.cc", |
| 33 "display_manager.h", | 35 "display_manager.h", |
| 34 "drag_controller.cc", | 36 "drag_controller.cc", |
| 35 "drag_controller.h", | 37 "drag_controller.h", |
| 36 "drag_cursor_updater.h", | 38 "drag_cursor_updater.h", |
| 37 "drag_source.h", | 39 "drag_source.h", |
| 38 "drag_target_connection.h", | 40 "drag_target_connection.h", |
| 39 "event_dispatcher.cc", | 41 "event_dispatcher.cc", |
| 40 "event_dispatcher.h", | 42 "event_dispatcher.h", |
| 41 "event_dispatcher_delegate.h", | 43 "event_dispatcher_delegate.h", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 service_manifest("mus_ws_unittests_app_manifest") { | 282 service_manifest("mus_ws_unittests_app_manifest") { |
| 281 name = "mus_ws_unittests_app" | 283 name = "mus_ws_unittests_app" |
| 282 source = "mus_ws_unittests_app_manifest.json" | 284 source = "mus_ws_unittests_app_manifest.json" |
| 283 } | 285 } |
| 284 | 286 |
| 285 catalog("mus_ws_unittests_catalog") { | 287 catalog("mus_ws_unittests_catalog") { |
| 286 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 288 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 287 | 289 |
| 288 standalone_services = [ "//services/ui:manifest" ] | 290 standalone_services = [ "//services/ui:manifest" ] |
| 289 } | 291 } |
| OLD | NEW |