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