| 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", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "gpu_channel_host.h", | 24 "gpu_channel_host.h", |
| 25 "gpu_memory_buffer_impl.cc", | 25 "gpu_memory_buffer_impl.cc", |
| 26 "gpu_memory_buffer_impl.h", | 26 "gpu_memory_buffer_impl.h", |
| 27 "gpu_memory_buffer_impl_shared_memory.cc", | 27 "gpu_memory_buffer_impl_shared_memory.cc", |
| 28 "gpu_memory_buffer_impl_shared_memory.h", | 28 "gpu_memory_buffer_impl_shared_memory.h", |
| 29 ] | 29 ] |
| 30 if (is_mac) { | 30 if (is_mac) { |
| 31 sources += [ | 31 sources += [ |
| 32 "gpu_memory_buffer_impl_io_surface.cc", | 32 "gpu_memory_buffer_impl_io_surface.cc", |
| 33 "gpu_memory_buffer_impl_io_surface.h", | 33 "gpu_memory_buffer_impl_io_surface.h", |
| 34 "gpu_process_hosted_ca_layer_tree_params.cc", |
| 35 "gpu_process_hosted_ca_layer_tree_params.h", |
| 34 ] | 36 ] |
| 35 } | 37 } |
| 36 if (is_android) { | 38 if (is_android) { |
| 37 sources += [ | 39 sources += [ |
| 38 "android/in_process_surface_texture_manager.cc", | 40 "android/in_process_surface_texture_manager.cc", |
| 39 "android/in_process_surface_texture_manager.h", | 41 "android/in_process_surface_texture_manager.h", |
| 40 "gpu_memory_buffer_impl_surface_texture.cc", | 42 "gpu_memory_buffer_impl_surface_texture.cc", |
| 41 "gpu_memory_buffer_impl_surface_texture.h", | 43 "gpu_memory_buffer_impl_surface_texture.h", |
| 42 ] | 44 ] |
| 43 libs = [ "android" ] | 45 libs = [ "android" ] |
| (...skipping 18 matching lines...) Expand all Loading... |
| 62 "//ui/events/ipc", | 64 "//ui/events/ipc", |
| 63 "//ui/gfx/ipc", | 65 "//ui/gfx/ipc", |
| 64 "//ui/gfx/ipc/geometry", | 66 "//ui/gfx/ipc/geometry", |
| 65 "//ui/gl", | 67 "//ui/gl", |
| 66 "//url/ipc:url_ipc", | 68 "//url/ipc:url_ipc", |
| 67 ] | 69 ] |
| 68 if (use_ozone) { | 70 if (use_ozone) { |
| 69 deps += [ "//ui/ozone" ] | 71 deps += [ "//ui/ozone" ] |
| 70 } | 72 } |
| 71 } | 73 } |
| OLD | NEW |