| 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 "client_gpu_memory_buffer_manager.cc", |
| 22 "client_gpu_memory_buffer_manager.h", |
| 21 "command_buffer_proxy_impl.cc", | 23 "command_buffer_proxy_impl.cc", |
| 22 "command_buffer_proxy_impl.h", | 24 "command_buffer_proxy_impl.h", |
| 23 "gpu_channel_host.cc", | 25 "gpu_channel_host.cc", |
| 24 "gpu_channel_host.h", | 26 "gpu_channel_host.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) { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |