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") { |
(...skipping 23 matching lines...) Expand all Loading... |
34 "focus_controller.cc", | 34 "focus_controller.cc", |
35 "focus_controller.h", | 35 "focus_controller.h", |
36 "focus_controller_delegate.h", | 36 "focus_controller_delegate.h", |
37 "focus_controller_observer.h", | 37 "focus_controller_observer.h", |
38 "frame_generator.cc", | 38 "frame_generator.cc", |
39 "frame_generator.h", | 39 "frame_generator.h", |
40 "gpu_service_proxy.cc", | 40 "gpu_service_proxy.cc", |
41 "gpu_service_proxy.h", | 41 "gpu_service_proxy.h", |
42 "modal_window_controller.cc", | 42 "modal_window_controller.cc", |
43 "modal_window_controller.h", | 43 "modal_window_controller.h", |
| 44 "mus_gpu_memory_buffer_manager.cc", |
| 45 "mus_gpu_memory_buffer_manager.h", |
44 "operation.cc", | 46 "operation.cc", |
45 "operation.h", | 47 "operation.h", |
46 "platform_display.cc", | 48 "platform_display.cc", |
47 "platform_display.h", | 49 "platform_display.h", |
48 "platform_display_delegate.h", | 50 "platform_display_delegate.h", |
49 "platform_display_factory.h", | 51 "platform_display_factory.h", |
50 "platform_display_init_params.cc", | 52 "platform_display_init_params.cc", |
51 "platform_display_init_params.h", | 53 "platform_display_init_params.h", |
52 "scheduled_animation_group.cc", | 54 "scheduled_animation_group.cc", |
53 "scheduled_animation_group.h", | 55 "scheduled_animation_group.h", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "window_tree.h", | 99 "window_tree.h", |
98 "window_tree_binding.cc", | 100 "window_tree_binding.cc", |
99 "window_tree_binding.h", | 101 "window_tree_binding.h", |
100 "window_tree_factory.cc", | 102 "window_tree_factory.cc", |
101 "window_tree_factory.h", | 103 "window_tree_factory.h", |
102 "window_tree_host_factory.cc", | 104 "window_tree_host_factory.cc", |
103 "window_tree_host_factory.h", | 105 "window_tree_host_factory.h", |
104 ] | 106 ] |
105 | 107 |
106 deps = [ | 108 deps = [ |
107 # TODO(sad): Temporary, until the GPU process is split out of ws. | 109 "//gpu/command_buffer/client", |
108 "//services/ui/gpu", | 110 "//gpu/ipc/client", |
109 "//services/ui/gpu/display_compositor", | 111 "//gpu/ipc/common", |
| 112 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
110 "//services/ui/gpu/interfaces", | 113 "//services/ui/gpu/interfaces", |
111 ] | 114 ] |
112 | 115 |
113 public_deps = [ | 116 public_deps = [ |
114 "//base", | 117 "//base", |
115 "//cc", | 118 "//cc", |
116 "//cc/ipc:interfaces", | 119 "//cc/ipc:interfaces", |
117 "//cc/surfaces", | 120 "//cc/surfaces", |
118 "//cc/surfaces:surface_id", | 121 "//cc/surfaces:surface_id", |
119 "//mojo/common:common_base", | 122 "//mojo/common:common_base", |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 | 253 |
251 data_deps = [ | 254 data_deps = [ |
252 ":mus_ws_unittests_app_manifest", | 255 ":mus_ws_unittests_app_manifest", |
253 ] | 256 ] |
254 } | 257 } |
255 | 258 |
256 service_manifest("mus_ws_unittests_app_manifest") { | 259 service_manifest("mus_ws_unittests_app_manifest") { |
257 name = "mus_ws_unittests_app" | 260 name = "mus_ws_unittests_app" |
258 source = "mus_ws_unittests_app_manifest.json" | 261 source = "mus_ws_unittests_app_manifest.json" |
259 } | 262 } |
OLD | NEW |