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/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
9 | 9 |
10 static_library("lib") { | 10 static_library("lib") { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "platform_display.cc", | 54 "platform_display.cc", |
55 "platform_display.h", | 55 "platform_display.h", |
56 "platform_display_delegate.h", | 56 "platform_display_delegate.h", |
57 "platform_display_factory.h", | 57 "platform_display_factory.h", |
58 "platform_display_init_params.cc", | 58 "platform_display_init_params.cc", |
59 "platform_display_init_params.h", | 59 "platform_display_init_params.h", |
60 "scheduled_animation_group.cc", | 60 "scheduled_animation_group.cc", |
61 "scheduled_animation_group.h", | 61 "scheduled_animation_group.h", |
62 "server_window.cc", | 62 "server_window.cc", |
63 "server_window.h", | 63 "server_window.h", |
| 64 "server_window_compositor_frame_sink.cc", |
| 65 "server_window_compositor_frame_sink.h", |
| 66 "server_window_compositor_frame_sink_manager.cc", |
| 67 "server_window_compositor_frame_sink_manager.h", |
64 "server_window_delegate.h", | 68 "server_window_delegate.h", |
65 "server_window_drawn_tracker.cc", | 69 "server_window_drawn_tracker.cc", |
66 "server_window_drawn_tracker.h", | 70 "server_window_drawn_tracker.h", |
67 "server_window_drawn_tracker_observer.h", | 71 "server_window_drawn_tracker_observer.h", |
68 "server_window_observer.h", | 72 "server_window_observer.h", |
69 "server_window_surface.cc", | |
70 "server_window_surface.h", | |
71 "server_window_surface_manager.cc", | |
72 "server_window_surface_manager.h", | |
73 "server_window_tracker.h", | 73 "server_window_tracker.h", |
74 "touch_controller.cc", | 74 "touch_controller.cc", |
75 "touch_controller.h", | 75 "touch_controller.h", |
76 "user_activity_monitor.cc", | 76 "user_activity_monitor.cc", |
77 "user_activity_monitor.h", | 77 "user_activity_monitor.h", |
78 "user_display_manager.cc", | 78 "user_display_manager.cc", |
79 "user_display_manager.h", | 79 "user_display_manager.h", |
80 "user_display_manager_delegate.h", | 80 "user_display_manager_delegate.h", |
81 "user_id.h", | 81 "user_id.h", |
82 "user_id_tracker.cc", | 82 "user_id_tracker.cc", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 | 261 |
262 data_deps = [ | 262 data_deps = [ |
263 ":mus_ws_unittests_app_manifest", | 263 ":mus_ws_unittests_app_manifest", |
264 ] | 264 ] |
265 } | 265 } |
266 | 266 |
267 service_manifest("mus_ws_unittests_app_manifest") { | 267 service_manifest("mus_ws_unittests_app_manifest") { |
268 name = "mus_ws_unittests_app" | 268 name = "mus_ws_unittests_app" |
269 source = "mus_ws_unittests_app_manifest.json" | 269 source = "mus_ws_unittests_app_manifest.json" |
270 } | 270 } |
OLD | NEW |