| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # The files here go into the "gpu" component in a component build (with | 5 # The files here go into the "gpu" component in a component build (with |
| 6 # "command_buffer_client" and "gles2_cmd_helper" just forwarding) and goes into | 6 # "command_buffer_client" and "gles2_cmd_helper" just forwarding) and goes into |
| 7 # separate static libraries in non-component build. | 7 # separate static libraries in non-component build. |
| 8 group("client") { | 8 group("client") { |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 ] | 28 ] |
| 29 } | 29 } |
| 30 } | 30 } |
| 31 | 31 |
| 32 source_set("client_sources") { | 32 source_set("client_sources") { |
| 33 # External code should depend on this via //gpu/client above rather than | 33 # External code should depend on this via //gpu/client above rather than |
| 34 # depending on this directly or the component build will break. | 34 # depending on this directly or the component build will break. |
| 35 visibility = [ "//gpu/*" ] | 35 visibility = [ "//gpu/*" ] |
| 36 | 36 |
| 37 sources = [ | 37 sources = [ |
| 38 "client_discardable_manager.cc", |
| 39 "client_discardable_manager.h", |
| 38 "cmd_buffer_helper.cc", | 40 "cmd_buffer_helper.cc", |
| 39 "cmd_buffer_helper.h", | 41 "cmd_buffer_helper.h", |
| 40 "fenced_allocator.cc", | 42 "fenced_allocator.cc", |
| 41 "fenced_allocator.h", | 43 "fenced_allocator.h", |
| 42 "gpu_control.h", | 44 "gpu_control.h", |
| 43 "gpu_memory_buffer_manager.cc", | 45 "gpu_memory_buffer_manager.cc", |
| 44 "gpu_memory_buffer_manager.h", | 46 "gpu_memory_buffer_manager.h", |
| 45 "mapped_memory.cc", | 47 "mapped_memory.cc", |
| 46 "mapped_memory.h", | 48 "mapped_memory.h", |
| 47 "ring_buffer.cc", | 49 "ring_buffer.cc", |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 ] | 214 ] |
| 213 deps = [ | 215 deps = [ |
| 214 ":client", | 216 ":client", |
| 215 ":gles2_implementation_no_check", | 217 ":gles2_implementation_no_check", |
| 216 ":gles2_interface", | 218 ":gles2_interface", |
| 217 "//base", | 219 "//base", |
| 218 "//base/third_party/dynamic_annotations", | 220 "//base/third_party/dynamic_annotations", |
| 219 "//gpu/command_buffer/common", | 221 "//gpu/command_buffer/common", |
| 220 ] | 222 ] |
| 221 } | 223 } |
| OLD | NEW |