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