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 21 matching lines...) Expand all Loading... |
32 "event_matcher.cc", | 32 "event_matcher.cc", |
33 "event_matcher.h", | 33 "event_matcher.h", |
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 "gpu_service_proxy_delegate.h", |
42 "modal_window_controller.cc", | 43 "modal_window_controller.cc", |
43 "modal_window_controller.h", | 44 "modal_window_controller.h", |
| 45 "mus_gpu_memory_buffer_manager.cc", |
| 46 "mus_gpu_memory_buffer_manager.h", |
44 "operation.cc", | 47 "operation.cc", |
45 "operation.h", | 48 "operation.h", |
46 "platform_display.cc", | 49 "platform_display.cc", |
47 "platform_display.h", | 50 "platform_display.h", |
48 "platform_display_delegate.h", | 51 "platform_display_delegate.h", |
49 "platform_display_factory.h", | 52 "platform_display_factory.h", |
50 "platform_display_init_params.cc", | 53 "platform_display_init_params.cc", |
51 "platform_display_init_params.h", | 54 "platform_display_init_params.h", |
52 "scheduled_animation_group.cc", | 55 "scheduled_animation_group.cc", |
53 "scheduled_animation_group.h", | 56 "scheduled_animation_group.h", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "window_tree.h", | 100 "window_tree.h", |
98 "window_tree_binding.cc", | 101 "window_tree_binding.cc", |
99 "window_tree_binding.h", | 102 "window_tree_binding.h", |
100 "window_tree_factory.cc", | 103 "window_tree_factory.cc", |
101 "window_tree_factory.h", | 104 "window_tree_factory.h", |
102 "window_tree_host_factory.cc", | 105 "window_tree_host_factory.cc", |
103 "window_tree_host_factory.h", | 106 "window_tree_host_factory.h", |
104 ] | 107 ] |
105 | 108 |
106 deps = [ | 109 deps = [ |
107 # TODO(sad): Temporary, until the GPU process is split out of ws. | 110 "//gpu/command_buffer/client", |
108 "//services/ui/gpu", | 111 "//gpu/ipc/client", |
109 "//services/ui/gpu/display_compositor", | 112 "//gpu/ipc/common", |
| 113 "//services/ui/gpu", # TODO(sad): Temporary until GPU process split. |
110 "//services/ui/gpu/interfaces", | 114 "//services/ui/gpu/interfaces", |
111 ] | 115 ] |
112 | 116 |
113 public_deps = [ | 117 public_deps = [ |
114 "//base", | 118 "//base", |
115 "//cc", | 119 "//cc", |
116 "//cc/ipc:interfaces", | 120 "//cc/ipc:interfaces", |
117 "//cc/surfaces", | 121 "//cc/surfaces", |
118 "//cc/surfaces:surface_id", | 122 "//cc/surfaces:surface_id", |
119 "//mojo/common:common_base", | 123 "//mojo/common:common_base", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 "window_tree_unittest.cc", | 220 "window_tree_unittest.cc", |
217 ] | 221 ] |
218 | 222 |
219 deps = [ | 223 deps = [ |
220 ":lib", | 224 ":lib", |
221 ":test_support", | 225 ":test_support", |
222 "//base", | 226 "//base", |
223 "//base/test:test_config", | 227 "//base/test:test_config", |
224 "//base/test:test_support", | 228 "//base/test:test_support", |
225 "//cc:cc", | 229 "//cc:cc", |
| 230 "//gpu/ipc/client", |
226 "//mojo/public/cpp/bindings:bindings", | 231 "//mojo/public/cpp/bindings:bindings", |
227 "//services/shell/public/cpp:service_test_support", | 232 "//services/shell/public/cpp:service_test_support", |
228 "//services/shell/public/cpp:sources", | 233 "//services/shell/public/cpp:sources", |
229 "//services/shell/public/cpp/test:run_all_shelltests", | 234 "//services/shell/public/cpp/test:run_all_shelltests", |
230 "//services/shell/public/interfaces", | 235 "//services/shell/public/interfaces", |
231 "//services/ui/common:mus_common", | 236 "//services/ui/common:mus_common", |
232 "//services/ui/public/cpp", | 237 "//services/ui/public/cpp", |
233 "//services/ui/public/cpp:internal_or_test", | 238 "//services/ui/public/cpp:internal_or_test", |
234 "//services/ui/public/cpp/tests:test_support", | 239 "//services/ui/public/cpp/tests:test_support", |
235 "//services/ui/public/interfaces", | 240 "//services/ui/public/interfaces", |
(...skipping 14 matching lines...) Expand all Loading... |
250 | 255 |
251 data_deps = [ | 256 data_deps = [ |
252 ":mus_ws_unittests_app_manifest", | 257 ":mus_ws_unittests_app_manifest", |
253 ] | 258 ] |
254 } | 259 } |
255 | 260 |
256 service_manifest("mus_ws_unittests_app_manifest") { | 261 service_manifest("mus_ws_unittests_app_manifest") { |
257 name = "mus_ws_unittests_app" | 262 name = "mus_ws_unittests_app" |
258 source = "mus_ws_unittests_app_manifest.json" | 263 source = "mus_ws_unittests_app_manifest.json" |
259 } | 264 } |
OLD | NEW |