| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 61 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
| 62 | 62 |
| 63 public_deps = [ | 63 public_deps = [ |
| 64 "//base", | 64 "//base", |
| 65 "//gpu/command_buffer/common:gles2_utils", | 65 "//gpu/command_buffer/common:gles2_utils", |
| 66 ] | 66 ] |
| 67 deps = [ | 67 deps = [ |
| 68 "//gpu/command_buffer/common:common_sources", | 68 "//gpu/command_buffer/common:common_sources", |
| 69 "//gpu/ipc/common:surface_handle_type", |
| 69 "//ui/gfx:memory_buffer", | 70 "//ui/gfx:memory_buffer", |
| 70 "//ui/gfx/geometry", | 71 "//ui/gfx/geometry", |
| 71 ] | 72 ] |
| 72 } | 73 } |
| 73 | 74 |
| 74 source_set("gles2_cmd_helper_sources") { | 75 source_set("gles2_cmd_helper_sources") { |
| 75 visibility = [ "//gpu/*" ] | 76 visibility = [ "//gpu/*" ] |
| 76 sources = [ | 77 sources = [ |
| 77 "gles2_cmd_helper.cc", | 78 "gles2_cmd_helper.cc", |
| 78 "gles2_cmd_helper.h", | 79 "gles2_cmd_helper.h", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 ] | 235 ] |
| 235 deps = [ | 236 deps = [ |
| 236 ":client", | 237 ":client", |
| 237 ":gles2_implementation_no_check", | 238 ":gles2_implementation_no_check", |
| 238 ":gles2_interface", | 239 ":gles2_interface", |
| 239 "//base", | 240 "//base", |
| 240 "//base/third_party/dynamic_annotations", | 241 "//base/third_party/dynamic_annotations", |
| 241 "//gpu/command_buffer/common", | 242 "//gpu/command_buffer/common", |
| 242 ] | 243 ] |
| 243 } | 244 } |
| OLD | NEW |