| 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. This needs to match the | 7 # separate static libraries in non-component build. This needs to match the |
| 8 # GYP build which was likely an attempt to make larger components to help with | 8 # GYP build which was likely an attempt to make larger components to help with |
| 9 # loading. | 9 # loading. |
| 10 group("client") { | 10 group("client") { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 public_deps = [ | 24 public_deps = [ |
| 25 "//gpu", | 25 "//gpu", |
| 26 ] | 26 ] |
| 27 } else { | 27 } else { |
| 28 public_deps = [ | 28 public_deps = [ |
| 29 ":gles2_cmd_helper_sources", | 29 ":gles2_cmd_helper_sources", |
| 30 ] | 30 ] |
| 31 } | 31 } |
| 32 } | 32 } |
| 33 | 33 |
| 34 component("client_sources_for_ppapi") { |
| 35 public_deps = [ |
| 36 ":client_sources", |
| 37 ":gles2_implementation", |
| 38 "//gpu/ipc/common:command_buffer_traits", |
| 39 ] |
| 40 } |
| 41 |
| 34 source_set("client_sources") { | 42 source_set("client_sources") { |
| 35 visibility = [ "//gpu/*" ] | 43 visibility = [ "//gpu/*" ] |
| 36 | 44 |
| 37 sources = [ | 45 sources = [ |
| 38 "cmd_buffer_helper.cc", | 46 "cmd_buffer_helper.cc", |
| 39 "cmd_buffer_helper.h", | 47 "cmd_buffer_helper.h", |
| 40 "fenced_allocator.cc", | 48 "fenced_allocator.cc", |
| 41 "fenced_allocator.h", | 49 "fenced_allocator.h", |
| 42 "gpu_control.h", | 50 "gpu_control.h", |
| 43 "gpu_memory_buffer_manager.cc", | 51 "gpu_memory_buffer_manager.cc", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 ] | 238 ] |
| 231 deps = [ | 239 deps = [ |
| 232 ":client", | 240 ":client", |
| 233 ":gles2_implementation_no_check", | 241 ":gles2_implementation_no_check", |
| 234 ":gles2_interface", | 242 ":gles2_interface", |
| 235 "//base", | 243 "//base", |
| 236 "//base/third_party/dynamic_annotations", | 244 "//base/third_party/dynamic_annotations", |
| 237 "//gpu/command_buffer/common", | 245 "//gpu/command_buffer/common", |
| 238 ] | 246 ] |
| 239 } | 247 } |
| OLD | NEW |