| 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 24 matching lines...) Expand all Loading... |
| 35 "event_dispatcher.h", | 35 "event_dispatcher.h", |
| 36 "event_dispatcher_delegate.h", | 36 "event_dispatcher_delegate.h", |
| 37 "event_matcher.cc", | 37 "event_matcher.cc", |
| 38 "event_matcher.h", | 38 "event_matcher.h", |
| 39 "focus_controller.cc", | 39 "focus_controller.cc", |
| 40 "focus_controller.h", | 40 "focus_controller.h", |
| 41 "focus_controller_delegate.h", | 41 "focus_controller_delegate.h", |
| 42 "focus_controller_observer.h", | 42 "focus_controller_observer.h", |
| 43 "frame_generator.cc", | 43 "frame_generator.cc", |
| 44 "frame_generator.h", | 44 "frame_generator.h", |
| 45 "gpu_compositor_frame_sink.cc", |
| 46 "gpu_compositor_frame_sink.h", |
| 45 "gpu_service_proxy.cc", | 47 "gpu_service_proxy.cc", |
| 46 "gpu_service_proxy.h", | 48 "gpu_service_proxy.h", |
| 47 "gpu_service_proxy_delegate.h", | 49 "gpu_service_proxy_delegate.h", |
| 48 "modal_window_controller.cc", | 50 "modal_window_controller.cc", |
| 49 "modal_window_controller.h", | 51 "modal_window_controller.h", |
| 50 "mus_gpu_memory_buffer_manager.cc", | 52 "mus_gpu_memory_buffer_manager.cc", |
| 51 "mus_gpu_memory_buffer_manager.h", | 53 "mus_gpu_memory_buffer_manager.h", |
| 52 "operation.cc", | 54 "operation.cc", |
| 53 "operation.h", | 55 "operation.h", |
| 54 "platform_display.cc", | 56 "platform_display.cc", |
| 55 "platform_display.h", | 57 "platform_display.h", |
| 56 "platform_display_delegate.h", | 58 "platform_display_delegate.h", |
| 57 "platform_display_factory.h", | 59 "platform_display_factory.h", |
| 58 "platform_display_init_params.cc", | 60 "platform_display_init_params.cc", |
| 59 "platform_display_init_params.h", | 61 "platform_display_init_params.h", |
| 60 "scheduled_animation_group.cc", | 62 "scheduled_animation_group.cc", |
| 61 "scheduled_animation_group.h", | 63 "scheduled_animation_group.h", |
| 62 "server_window.cc", | 64 "server_window.cc", |
| 63 "server_window.h", | 65 "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", | 66 "server_window_compositor_frame_sink_manager.cc", |
| 67 "server_window_compositor_frame_sink_manager.h", | 67 "server_window_compositor_frame_sink_manager.h", |
| 68 "server_window_delegate.h", | 68 "server_window_delegate.h", |
| 69 "server_window_drawn_tracker.cc", | 69 "server_window_drawn_tracker.cc", |
| 70 "server_window_drawn_tracker.h", | 70 "server_window_drawn_tracker.h", |
| 71 "server_window_drawn_tracker_observer.h", | 71 "server_window_drawn_tracker_observer.h", |
| 72 "server_window_observer.h", | 72 "server_window_observer.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", |
| (...skipping 185 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 |