| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 ":gles2_cmd_helper", | 178 ":gles2_cmd_helper", |
| 179 ":gles2_interface", | 179 ":gles2_interface", |
| 180 "//base", | 180 "//base", |
| 181 "//gpu/command_buffer/common", | 181 "//gpu/command_buffer/common", |
| 182 "//gpu/command_buffer/common:gles2_utils", | 182 "//gpu/command_buffer/common:gles2_utils", |
| 183 "//ui/gfx", | 183 "//ui/gfx", |
| 184 "//ui/gfx/geometry", | 184 "//ui/gfx/geometry", |
| 185 ] | 185 ] |
| 186 } | 186 } |
| 187 | 187 |
| 188 component("gl_in_process_context") { | |
| 189 sources = [ | |
| 190 "gl_in_process_context.cc", | |
| 191 "gl_in_process_context.h", | |
| 192 "gl_in_process_context_export.h", | |
| 193 ] | |
| 194 | |
| 195 defines = [ "GL_IN_PROCESS_CONTEXT_IMPLEMENTATION" ] | |
| 196 | |
| 197 deps = [ | |
| 198 ":gles2_implementation", | |
| 199 "//base", | |
| 200 "//base/third_party/dynamic_annotations", | |
| 201 "//gpu", | |
| 202 "//gpu/command_buffer/common:gles2_utils", | |
| 203 "//ui/gfx/geometry", | |
| 204 "//ui/gl", | |
| 205 ] | |
| 206 } | |
| 207 | |
| 208 component("gles2_c_lib") { | 188 component("gles2_c_lib") { |
| 209 sources = gles2_c_lib_source_files | 189 sources = gles2_c_lib_source_files |
| 210 defines = [ "GLES2_C_LIB_IMPLEMENTATION" ] | 190 defines = [ "GLES2_C_LIB_IMPLEMENTATION" ] |
| 211 | 191 |
| 212 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 192 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 213 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 193 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 214 | 194 |
| 215 deps = [ | 195 deps = [ |
| 216 ":client", | 196 ":client", |
| 217 ":gles2_interface", | 197 ":gles2_interface", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 232 ] | 212 ] |
| 233 deps = [ | 213 deps = [ |
| 234 ":client", | 214 ":client", |
| 235 ":gles2_implementation_no_check", | 215 ":gles2_implementation_no_check", |
| 236 ":gles2_interface", | 216 ":gles2_interface", |
| 237 "//base", | 217 "//base", |
| 238 "//base/third_party/dynamic_annotations", | 218 "//base/third_party/dynamic_annotations", |
| 239 "//gpu/command_buffer/common", | 219 "//gpu/command_buffer/common", |
| 240 ] | 220 ] |
| 241 } | 221 } |
| OLD | NEW |