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

Side by Side Diff: gpu/gpu_common.gypi

Issue 10577037: Add GL_CHROMIUM_get_error_query (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # Library emulates GLES2 using command_buffers. 8 # Library emulates GLES2 using command_buffers.
9 'target_name': 'gles2_implementation', 9 'target_name': 'gles2_implementation',
10 'type': '<(component)', 10 'type': '<(component)',
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 'gles2_implementation_client_side_arrays', 224 'gles2_implementation_client_side_arrays',
225 'gles2_cmd_helper', 225 'gles2_cmd_helper',
226 #'gl_unittests', 226 #'gl_unittests',
227 ], 227 ],
228 'defines': [ 228 'defines': [
229 'GLES2_C_LIB_IMPLEMENTATION', 229 'GLES2_C_LIB_IMPLEMENTATION',
230 'GL_GLEXT_PROTOTYPES', 230 'GL_GLEXT_PROTOTYPES',
231 ], 231 ],
232 'sources': [ 232 'sources': [
233 '<@(gles2_c_lib_source_files)', 233 '<@(gles2_c_lib_source_files)',
234 'command_buffer/tests/occlusion_query_unittests.cc',
235 'command_buffer/tests/gl_bind_uniform_location_unittest.cc', 234 'command_buffer/tests/gl_bind_uniform_location_unittest.cc',
236 'command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc', 235 'command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc',
237 'command_buffer/tests/gl_depth_texture_unittest.cc', 236 'command_buffer/tests/gl_depth_texture_unittest.cc',
237 'command_buffer/tests/gl_get_error_query_unittests.cc',
238 'command_buffer/tests/gl_manager.cc', 238 'command_buffer/tests/gl_manager.cc',
239 'command_buffer/tests/gl_manager.h', 239 'command_buffer/tests/gl_manager.h',
240 'command_buffer/tests/gl_tests_main.cc', 240 'command_buffer/tests/gl_tests_main.cc',
241 'command_buffer/tests/gl_test_utils.cc', 241 'command_buffer/tests/gl_test_utils.cc',
242 'command_buffer/tests/gl_test_utils.h', 242 'command_buffer/tests/gl_test_utils.h',
243 'command_buffer/tests/gl_texture_mailbox_unittests.cc', 243 'command_buffer/tests/gl_texture_mailbox_unittests.cc',
244 'command_buffer/tests/gl_unittests.cc', 244 'command_buffer/tests/gl_unittests.cc',
245 'command_buffer/tests/occlusion_query_unittests.cc',
245 ], 246 ],
246 }, 247 },
247 { 248 {
248 'target_name': 'gpu_unittest_utils', 249 'target_name': 'gpu_unittest_utils',
249 'type': 'static_library', 250 'type': 'static_library',
250 'dependencies': [ 251 'dependencies': [
251 '../testing/gmock.gyp:gmock', 252 '../testing/gmock.gyp:gmock',
252 '../testing/gtest.gyp:gtest', 253 '../testing/gtest.gyp:gtest',
253 '../ui/gl/gl.gyp:gl', 254 '../ui/gl/gl.gyp:gl',
254 ], 255 ],
(...skipping 25 matching lines...) Expand all
280 'test_suite_name': 'gpu_unittests', 281 'test_suite_name': 'gpu_unittests',
281 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gpu_unitt ests<(SHARED_LIB_SUFFIX)', 282 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gpu_unitt ests<(SHARED_LIB_SUFFIX)',
282 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , 283 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] ,
283 }, 284 },
284 'includes': [ '../build/apk_test.gypi' ], 285 'includes': [ '../build/apk_test.gypi' ],
285 }, 286 },
286 ], 287 ],
287 }], 288 }],
288 ], 289 ],
289 } 290 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698