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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 sources = [ | 175 sources = [ |
176 "gl_in_process_context.cc", | 176 "gl_in_process_context.cc", |
177 "gl_in_process_context.h", | 177 "gl_in_process_context.h", |
178 "gl_in_process_context_export.h", | 178 "gl_in_process_context_export.h", |
179 ] | 179 ] |
180 | 180 |
181 defines = [ "GL_IN_PROCESS_CONTEXT_IMPLEMENTATION" ] | 181 defines = [ "GL_IN_PROCESS_CONTEXT_IMPLEMENTATION" ] |
182 | 182 |
183 deps = [ | 183 deps = [ |
184 ":gles2_implementation", | 184 ":gles2_implementation", |
| 185 "//base", |
| 186 "//base/third_party/dynamic_annotations", |
185 "//gpu", | 187 "//gpu", |
186 "//gpu/command_buffer/common:gles2_utils", | 188 "//gpu/command_buffer/common:gles2_utils", |
187 "//base", | |
188 "//base/third_party/dynamic_annotations", | |
189 "//ui/gfx/geometry", | 189 "//ui/gfx/geometry", |
190 "//ui/gl", | 190 "//ui/gl", |
191 ] | 191 ] |
192 } | 192 } |
193 | 193 |
194 component("gles2_c_lib") { | 194 component("gles2_c_lib") { |
195 sources = gles2_c_lib_source_files | 195 sources = gles2_c_lib_source_files |
196 defines = [ "GLES2_C_LIB_IMPLEMENTATION" ] | 196 defines = [ "GLES2_C_LIB_IMPLEMENTATION" ] |
197 | 197 |
198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 20 matching lines...) Expand all Loading... |
219 ] | 219 ] |
220 deps = [ | 220 deps = [ |
221 ":client", | 221 ":client", |
222 ":gles2_implementation_no_check", | 222 ":gles2_implementation_no_check", |
223 ":gles2_interface", | 223 ":gles2_interface", |
224 "//base", | 224 "//base", |
225 "//base/third_party/dynamic_annotations", | 225 "//base/third_party/dynamic_annotations", |
226 "//gpu/command_buffer/common", | 226 "//gpu/command_buffer/common", |
227 ] | 227 ] |
228 } | 228 } |
OLD | NEW |