| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 configs += [ | 53 configs += [ |
| 54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 55 "//build/config/compiler:no_size_t_to_int_warning", | 55 "//build/config/compiler:no_size_t_to_int_warning", |
| 56 "//gpu:gpu_implementation", | 56 "//gpu:gpu_implementation", |
| 57 ] | 57 ] |
| 58 | 58 |
| 59 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 59 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
| 60 | 60 |
| 61 public_deps = [ |
| 62 "//base", |
| 63 "//gpu/command_buffer/common:gles2_utils", |
| 64 ] |
| 61 deps = [ | 65 deps = [ |
| 62 "//base", | |
| 63 "//gpu/command_buffer/common:common_sources", | 66 "//gpu/command_buffer/common:common_sources", |
| 64 "//gpu/command_buffer/common:gles2_utils", | |
| 65 "//ui/gfx:memory_buffer", | 67 "//ui/gfx:memory_buffer", |
| 66 "//ui/gfx/geometry", | 68 "//ui/gfx/geometry", |
| 67 ] | 69 ] |
| 68 } | 70 } |
| 69 | 71 |
| 70 source_set("gles2_cmd_helper_sources") { | 72 source_set("gles2_cmd_helper_sources") { |
| 71 visibility = [ "//gpu/*" ] | 73 visibility = [ "//gpu/*" ] |
| 72 sources = [ | 74 sources = [ |
| 73 "gles2_cmd_helper.cc", | 75 "gles2_cmd_helper.cc", |
| 74 "gles2_cmd_helper.h", | 76 "gles2_cmd_helper.h", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 ] | 232 ] |
| 231 deps = [ | 233 deps = [ |
| 232 ":client", | 234 ":client", |
| 233 ":gles2_implementation_no_check", | 235 ":gles2_implementation_no_check", |
| 234 ":gles2_interface", | 236 ":gles2_interface", |
| 235 "//base", | 237 "//base", |
| 236 "//base/third_party/dynamic_annotations", | 238 "//base/third_party/dynamic_annotations", |
| 237 "//gpu/command_buffer/common", | 239 "//gpu/command_buffer/common", |
| 238 ] | 240 ] |
| 239 } | 241 } |
| OLD | NEW |