| 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 17 matching lines...) Expand all Loading... |
| 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 ] | 34 ] |
| 35 } | 35 } |
| 36 if (is_android) { | 36 if (is_android) { |
| 37 sources += [ | 37 sources += [ |
| 38 "android/in_process_surface_texture_manager.cc", |
| 39 "android/in_process_surface_texture_manager.h", |
| 38 "gpu_memory_buffer_impl_surface_texture.cc", | 40 "gpu_memory_buffer_impl_surface_texture.cc", |
| 39 "gpu_memory_buffer_impl_surface_texture.h", | 41 "gpu_memory_buffer_impl_surface_texture.h", |
| 40 ] | 42 ] |
| 41 libs = [ "android" ] | 43 libs = [ "android" ] |
| 42 } | 44 } |
| 43 if (use_ozone) { | 45 if (use_ozone) { |
| 44 sources += [ | 46 sources += [ |
| 45 "gpu_memory_buffer_impl_ozone_native_pixmap.cc", | 47 "gpu_memory_buffer_impl_ozone_native_pixmap.cc", |
| 46 "gpu_memory_buffer_impl_ozone_native_pixmap.h", | 48 "gpu_memory_buffer_impl_ozone_native_pixmap.h", |
| 47 ] | 49 ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 59 "//ipc", | 61 "//ipc", |
| 60 "//ui/events/ipc", | 62 "//ui/events/ipc", |
| 61 "//ui/gfx/ipc", | 63 "//ui/gfx/ipc", |
| 62 "//ui/gl", | 64 "//ui/gl", |
| 63 "//url/ipc:url_ipc", | 65 "//url/ipc:url_ipc", |
| 64 ] | 66 ] |
| 65 if (use_ozone) { | 67 if (use_ozone) { |
| 66 deps += [ "//ui/ozone" ] | 68 deps += [ "//ui/ozone" ] |
| 67 } | 69 } |
| 68 } | 70 } |
| OLD | NEW |