OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 | 6 |
7 group("client") { | 7 group("client") { |
8 if (is_component_build) { | 8 if (is_component_build) { |
9 public_deps = [ | 9 public_deps = [ |
10 "//gpu", | 10 "//gpu", |
11 ] | 11 ] |
12 } else { | 12 } else { |
13 public_deps = [ | 13 public_deps = [ |
14 ":ipc_client_sources", | 14 ":ipc_client_sources", |
15 ] | 15 ] |
16 } | 16 } |
17 } | 17 } |
18 | 18 |
19 source_set("ipc_client_sources") { | 19 source_set("ipc_client_sources") { |
20 sources = [ | 20 sources = [ |
21 "command_buffer_proxy_impl.cc", | 21 "command_buffer_proxy_impl.cc", |
22 "command_buffer_proxy_impl.h", | 22 "command_buffer_proxy_impl.h", |
23 "gpu_channel_host.cc", | 23 "gpu_channel_host.cc", |
24 "gpu_channel_host.h", | 24 "gpu_channel_host.h", |
| 25 "gpu_fence_impl.cc", |
| 26 "gpu_fence_impl.h", |
25 "gpu_memory_buffer_impl.cc", | 27 "gpu_memory_buffer_impl.cc", |
26 "gpu_memory_buffer_impl.h", | 28 "gpu_memory_buffer_impl.h", |
27 "gpu_memory_buffer_impl_shared_memory.cc", | 29 "gpu_memory_buffer_impl_shared_memory.cc", |
28 "gpu_memory_buffer_impl_shared_memory.h", | 30 "gpu_memory_buffer_impl_shared_memory.h", |
29 ] | 31 ] |
30 if (is_mac) { | 32 if (is_mac) { |
31 sources += [ | 33 sources += [ |
32 "gpu_memory_buffer_impl_io_surface.cc", | 34 "gpu_memory_buffer_impl_io_surface.cc", |
33 "gpu_memory_buffer_impl_io_surface.h", | 35 "gpu_memory_buffer_impl_io_surface.h", |
34 "gpu_process_hosted_ca_layer_tree_params.cc", | 36 "gpu_process_hosted_ca_layer_tree_params.cc", |
(...skipping 28 matching lines...) Expand all Loading... |
63 "//ui/events/ipc", | 65 "//ui/events/ipc", |
64 "//ui/gfx/ipc", | 66 "//ui/gfx/ipc", |
65 "//ui/gfx/ipc/geometry", | 67 "//ui/gfx/ipc/geometry", |
66 "//ui/gl", | 68 "//ui/gl", |
67 "//url/ipc:url_ipc", | 69 "//url/ipc:url_ipc", |
68 ] | 70 ] |
69 if (use_ozone) { | 71 if (use_ozone) { |
70 deps += [ "//ui/ozone" ] | 72 deps += [ "//ui/ozone" ] |
71 } | 73 } |
72 } | 74 } |
OLD | NEW |