| 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/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 | 9 |
| 10 static_library("lib") { | 10 static_library("lib") { |
| 11 sources = [ | 11 sources = [ |
| 12 "accelerator.cc", | 12 "accelerator.cc", |
| 13 "accelerator.h", | 13 "accelerator.h", |
| 14 "access_policy.h", | 14 "access_policy.h", |
| 15 "access_policy_delegate.h", | 15 "access_policy_delegate.h", |
| 16 "accessibility_manager.cc", | 16 "accessibility_manager.cc", |
| 17 "accessibility_manager.h", | 17 "accessibility_manager.h", |
| 18 "animation_runner.cc", | 18 "animation_runner.cc", |
| 19 "animation_runner.h", | 19 "animation_runner.h", |
| 20 "animation_runner_observer.h", | 20 "animation_runner_observer.h", |
| 21 "default_access_policy.cc", | 21 "default_access_policy.cc", |
| 22 "default_access_policy.h", | 22 "default_access_policy.h", |
| 23 "display.cc", | 23 "display.cc", |
| 24 "display.h", | 24 "display.h", |
| 25 "display_binding.cc", | 25 "display_binding.cc", |
| 26 "display_binding.h", | 26 "display_binding.h", |
| 27 "display_manager.cc", | 27 "display_manager.cc", |
| 28 "display_manager.h", | 28 "display_manager.h", |
| 29 "display_manager_delegate.h", | |
| 30 "event_dispatcher.cc", | 29 "event_dispatcher.cc", |
| 31 "event_dispatcher.h", | 30 "event_dispatcher.h", |
| 32 "event_dispatcher_delegate.h", | 31 "event_dispatcher_delegate.h", |
| 33 "event_matcher.cc", | 32 "event_matcher.cc", |
| 34 "event_matcher.h", | 33 "event_matcher.h", |
| 35 "focus_controller.cc", | 34 "focus_controller.cc", |
| 36 "focus_controller.h", | 35 "focus_controller.h", |
| 37 "focus_controller_delegate.h", | 36 "focus_controller_delegate.h", |
| 38 "focus_controller_observer.h", | 37 "focus_controller_observer.h", |
| 39 "frame_generator.cc", | 38 "frame_generator.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 61 "server_window_surface.h", | 60 "server_window_surface.h", |
| 62 "server_window_surface_manager.cc", | 61 "server_window_surface_manager.cc", |
| 63 "server_window_surface_manager.h", | 62 "server_window_surface_manager.h", |
| 64 "server_window_tracker.h", | 63 "server_window_tracker.h", |
| 65 "touch_controller.cc", | 64 "touch_controller.cc", |
| 66 "touch_controller.h", | 65 "touch_controller.h", |
| 67 "user_activity_monitor.cc", | 66 "user_activity_monitor.cc", |
| 68 "user_activity_monitor.h", | 67 "user_activity_monitor.h", |
| 69 "user_display_manager.cc", | 68 "user_display_manager.cc", |
| 70 "user_display_manager.h", | 69 "user_display_manager.h", |
| 70 "user_display_manager_delegate.h", |
| 71 "user_id.h", | 71 "user_id.h", |
| 72 "user_id_tracker.cc", | 72 "user_id_tracker.cc", |
| 73 "user_id_tracker.h", | 73 "user_id_tracker.h", |
| 74 "user_id_tracker_observer.h", | 74 "user_id_tracker_observer.h", |
| 75 "window_coordinate_conversions.cc", | 75 "window_coordinate_conversions.cc", |
| 76 "window_coordinate_conversions.h", | 76 "window_coordinate_conversions.h", |
| 77 "window_finder.cc", | 77 "window_finder.cc", |
| 78 "window_finder.h", | 78 "window_finder.h", |
| 79 "window_manager_access_policy.cc", | 79 "window_manager_access_policy.cc", |
| 80 "window_manager_access_policy.h", | 80 "window_manager_access_policy.h", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 241 |
| 242 data_deps = [ | 242 data_deps = [ |
| 243 ":mus_ws_unittests_app_manifest", | 243 ":mus_ws_unittests_app_manifest", |
| 244 ] | 244 ] |
| 245 } | 245 } |
| 246 | 246 |
| 247 service_manifest("mus_ws_unittests_app_manifest") { | 247 service_manifest("mus_ws_unittests_app_manifest") { |
| 248 name = "mus_ws_unittests_app" | 248 name = "mus_ws_unittests_app" |
| 249 source = "mus_ws_unittests_app_manifest.json" | 249 source = "mus_ws_unittests_app_manifest.json" |
| 250 } | 250 } |
| OLD | NEW |