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

Side by Side Diff: gpu/gpu.gyp

Issue 1688163002: command_buffer: Implement glGetStringi for GL ES 3.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@command-buffer-generator-int-types
Patch Set: eh3 Created 4 years, 10 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) 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 'variables': { 6 'variables': {
7 'nacl_win64_target': 0, 7 'nacl_win64_target': 0,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'gpu_common.gypi', 10 'gpu_common.gypi',
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 'command_buffer/tests/gl_ext_srgb_unittest.cc', 359 'command_buffer/tests/gl_ext_srgb_unittest.cc',
360 'command_buffer/tests/gl_fence_sync_unittest.cc', 360 'command_buffer/tests/gl_fence_sync_unittest.cc',
361 'command_buffer/tests/gl_gpu_memory_buffer_unittest.cc', 361 'command_buffer/tests/gl_gpu_memory_buffer_unittest.cc',
362 'command_buffer/tests/gl_lose_context_chromium_unittest.cc', 362 'command_buffer/tests/gl_lose_context_chromium_unittest.cc',
363 'command_buffer/tests/gl_manager.cc', 363 'command_buffer/tests/gl_manager.cc',
364 'command_buffer/tests/gl_manager.h', 364 'command_buffer/tests/gl_manager.h',
365 'command_buffer/tests/gl_pointcoord_unittest.cc', 365 'command_buffer/tests/gl_pointcoord_unittest.cc',
366 'command_buffer/tests/gl_program_unittest.cc', 366 'command_buffer/tests/gl_program_unittest.cc',
367 'command_buffer/tests/gl_query_unittest.cc', 367 'command_buffer/tests/gl_query_unittest.cc',
368 'command_buffer/tests/gl_readback_unittest.cc', 368 'command_buffer/tests/gl_readback_unittest.cc',
369 'command_buffer/tests/gl_request_extension_unittest.cc',
369 'command_buffer/tests/gl_shared_resources_unittest.cc', 370 'command_buffer/tests/gl_shared_resources_unittest.cc',
370 'command_buffer/tests/gl_stream_draw_unittest.cc', 371 'command_buffer/tests/gl_stream_draw_unittest.cc',
371 'command_buffer/tests/gl_test_utils.cc', 372 'command_buffer/tests/gl_test_utils.cc',
372 'command_buffer/tests/gl_test_utils.h', 373 'command_buffer/tests/gl_test_utils.h',
373 'command_buffer/tests/gl_tests_main.cc', 374 'command_buffer/tests/gl_tests_main.cc',
374 'command_buffer/tests/gl_texture_mailbox_unittest.cc', 375 'command_buffer/tests/gl_texture_mailbox_unittest.cc',
375 'command_buffer/tests/gl_texture_storage_unittest.cc', 376 'command_buffer/tests/gl_texture_storage_unittest.cc',
376 'command_buffer/tests/gl_unittest.cc', 377 'command_buffer/tests/gl_unittest.cc',
377 'command_buffer/tests/gl_unittests_android.cc', 378 'command_buffer/tests/gl_unittests_android.cc',
378 'command_buffer/tests/gl_virtual_contexts_unittest.cc', 379 'command_buffer/tests/gl_virtual_contexts_unittest.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 'command_buffer/service/error_state_mock.cc', 415 'command_buffer/service/error_state_mock.cc',
415 'command_buffer/service/gles2_cmd_decoder_mock.cc', 416 'command_buffer/service/gles2_cmd_decoder_mock.cc',
416 ], 417 ],
417 }, 418 },
418 { 419 {
419 # GN version: //gpu:command_buffer_gles2 420 # GN version: //gpu:command_buffer_gles2
420 'target_name': 'command_buffer_gles2', 421 'target_name': 'command_buffer_gles2',
421 'type': 'shared_library', 422 'type': 'shared_library',
422 'dependencies': [ 423 'dependencies': [
423 '../base/base.gyp:base', 424 '../base/base.gyp:base',
425 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
424 '../gpu/gpu.gyp:command_buffer_service', 426 '../gpu/gpu.gyp:command_buffer_service',
425 '../ui/gfx/gfx.gyp:gfx_geometry', 427 '../ui/gfx/gfx.gyp:gfx_geometry',
426 '../ui/gl/gl.gyp:gl', 428 '../ui/gl/gl.gyp:gl',
427 'gles2_c_lib', 429 'gles2_c_lib',
428 'gles2_implementation', 430 'gles2_implementation',
429 ], 431 ],
430 'sources': [ 432 'sources': [
431 # Note: sources list duplicated in GN build. 433 # Note: sources list duplicated in GN build.
432 # TODO(hendrikw): Move egl out of gles2_conform_support. 434 # TODO(hendrikw): Move egl out of gles2_conform_support.
433 'gles2_conform_support/egl/config.cc', 435 'gles2_conform_support/egl/config.cc',
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 ], 905 ],
904 'sources': [ 906 'sources': [
905 'gpu_unittests_apk.isolate', 907 'gpu_unittests_apk.isolate',
906 ], 908 ],
907 }, 909 },
908 ], 910 ],
909 }, 911 },
910 ], 912 ],
911 ], 913 ],
912 } 914 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698