| 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", | |
| 47 "gpu_service_proxy.cc", | 45 "gpu_service_proxy.cc", |
| 48 "gpu_service_proxy.h", | 46 "gpu_service_proxy.h", |
| 49 "gpu_service_proxy_delegate.h", | 47 "gpu_service_proxy_delegate.h", |
| 50 "modal_window_controller.cc", | 48 "modal_window_controller.cc", |
| 51 "modal_window_controller.h", | 49 "modal_window_controller.h", |
| 52 "mus_gpu_memory_buffer_manager.cc", | |
| 53 "mus_gpu_memory_buffer_manager.h", | |
| 54 "operation.cc", | 50 "operation.cc", |
| 55 "operation.h", | 51 "operation.h", |
| 56 "platform_display.cc", | 52 "platform_display.cc", |
| 57 "platform_display.h", | 53 "platform_display.h", |
| 58 "platform_display_default.cc", | 54 "platform_display_default.cc", |
| 59 "platform_display_default.h", | 55 "platform_display_default.h", |
| 60 "platform_display_delegate.h", | 56 "platform_display_delegate.h", |
| 61 "platform_display_factory.h", | 57 "platform_display_factory.h", |
| 62 "platform_display_init_params.cc", | 58 "platform_display_init_params.cc", |
| 63 "platform_display_init_params.h", | 59 "platform_display_init_params.h", |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 259 |
| 264 data_deps = [ | 260 data_deps = [ |
| 265 ":mus_ws_unittests_app_manifest", | 261 ":mus_ws_unittests_app_manifest", |
| 266 ] | 262 ] |
| 267 } | 263 } |
| 268 | 264 |
| 269 service_manifest("mus_ws_unittests_app_manifest") { | 265 service_manifest("mus_ws_unittests_app_manifest") { |
| 270 name = "mus_ws_unittests_app" | 266 name = "mus_ws_unittests_app" |
| 271 source = "mus_ws_unittests_app_manifest.json" | 267 source = "mus_ws_unittests_app_manifest.json" |
| 272 } | 268 } |
| OLD | NEW |