| 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 # In external window mode, top-level windows are native platform windows i.e. | 12 # In external window mode, top-level windows are native platform windows i.e. |
| 13 # not children of a Chrome OS window manager's root window. | 13 # not children of a Chrome OS window manager's root window. |
| 14 is_external_mode = use_ozone && !is_chromeos | 14 is_external_mode = use_ozone && !is_chromeos |
| 15 | 15 |
| 16 static_library("lib") { | 16 static_library("lib") { |
| 17 sources = [ | 17 sources = [ |
| 18 "accelerator.cc", | 18 "accelerator.cc", |
| 19 "accelerator.h", | 19 "accelerator.h", |
| 20 "access_policy.h", | 20 "access_policy.h", |
| 21 "access_policy_delegate.h", | 21 "access_policy_delegate.h", |
| 22 "accessibility_manager.cc", | 22 "accessibility_manager.cc", |
| 23 "accessibility_manager.h", | 23 "accessibility_manager.h", |
| 24 "compositor_frame_sink_client_binding.cc", |
| 25 "compositor_frame_sink_client_binding.h", |
| 24 "cursor_location_manager.cc", | 26 "cursor_location_manager.cc", |
| 25 "cursor_location_manager.h", | 27 "cursor_location_manager.h", |
| 26 "cursor_state.cc", | 28 "cursor_state.cc", |
| 27 "cursor_state.h", | 29 "cursor_state.h", |
| 28 "default_access_policy.cc", | 30 "default_access_policy.cc", |
| 29 "default_access_policy.h", | 31 "default_access_policy.h", |
| 30 "display.cc", | 32 "display.cc", |
| 31 "display.h", | 33 "display.h", |
| 32 "display_binding.cc", | 34 "display_binding.cc", |
| 33 "display_binding.h", | 35 "display_binding.h", |
| 34 "display_client_compositor_frame_sink.cc", | |
| 35 "display_client_compositor_frame_sink.h", | |
| 36 "display_manager.cc", | 36 "display_manager.cc", |
| 37 "display_manager.h", | 37 "display_manager.h", |
| 38 "drag_controller.cc", | 38 "drag_controller.cc", |
| 39 "drag_controller.h", | 39 "drag_controller.h", |
| 40 "drag_cursor_updater.h", | 40 "drag_cursor_updater.h", |
| 41 "drag_source.h", | 41 "drag_source.h", |
| 42 "drag_target_connection.h", | 42 "drag_target_connection.h", |
| 43 "event_dispatcher.cc", | 43 "event_dispatcher.cc", |
| 44 "event_dispatcher.h", | 44 "event_dispatcher.h", |
| 45 "event_dispatcher_delegate.h", | 45 "event_dispatcher_delegate.h", |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 service_manifest("mus_ws_unittests_app_manifest") { | 306 service_manifest("mus_ws_unittests_app_manifest") { |
| 307 name = "mus_ws_unittests_app" | 307 name = "mus_ws_unittests_app" |
| 308 source = "mus_ws_unittests_app_manifest.json" | 308 source = "mus_ws_unittests_app_manifest.json" |
| 309 } | 309 } |
| 310 | 310 |
| 311 catalog("mus_ws_unittests_catalog") { | 311 catalog("mus_ws_unittests_catalog") { |
| 312 embedded_services = [ ":mus_ws_unittests_app_manifest" ] | 312 embedded_services = [ ":mus_ws_unittests_app_manifest" ] |
| 313 | 313 |
| 314 standalone_services = [ "//services/ui:manifest" ] | 314 standalone_services = [ "//services/ui:manifest" ] |
| 315 } | 315 } |
| OLD | NEW |