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 source_set("client") { | 5 source_set("client") { |
6 sources = [ | 6 sources = [ |
7 "cmd_buffer_helper.cc", | 7 "cmd_buffer_helper.cc", |
8 "cmd_buffer_helper.h", | 8 "cmd_buffer_helper.h", |
9 "fenced_allocator.cc", | 9 "fenced_allocator.cc", |
10 "fenced_allocator.h", | 10 "fenced_allocator.h", |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 190 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
191 | 191 |
192 deps = [ | 192 deps = [ |
193 ":client", | 193 ":client", |
194 ":gles2_interface", | 194 ":gles2_interface", |
195 "//base", | 195 "//base", |
196 "//base/third_party/dynamic_annotations", | 196 "//base/third_party/dynamic_annotations", |
197 "//gpu/command_buffer/common", | 197 "//gpu/command_buffer/common", |
198 ] | 198 ] |
199 } | 199 } |
| 200 |
| 201 # GYP version: gpu/gpu.gyp:gles2_c_lib_nocheck |
| 202 # Same as gles2_c_lib except with no parameter checking. Required for |
| 203 # OpenGL ES 2.0 conformance tests. |
| 204 component("gles2_c_lib_nocheck") { |
| 205 sources = gles2_c_lib_source_files |
| 206 |
| 207 defines = [ |
| 208 "GLES2_C_LIB_IMPLEMENTATION", |
| 209 "GLES2_CONFORMANCE_TESTS=1", |
| 210 ] |
| 211 deps = [ |
| 212 ":client", |
| 213 ":gles2_implementation_no_check", |
| 214 ":gles2_interface", |
| 215 "//base", |
| 216 "//base/third_party/dynamic_annotations", |
| 217 "//gpu/command_buffer/common", |
| 218 ] |
| 219 } |
OLD | NEW |