Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: gpu/command_buffer/client/BUILD.gn

Issue 1001833005: Update from https://crrev.com/320343 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Supress Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_c_lib_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698