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

Side by Side Diff: gpu/gpu.gyp

Issue 2061743004: Implement native GMB backbuffers in the GLES2 Command Decoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from piman. Created 4 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
« no previous file with comments | « gpu/gles2_conform_support/egl/context.cc ('k') | gpu/ipc/service/gpu_command_buffer_stub.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'build_angle_deqp_tests%': 0, 8 'build_angle_deqp_tests%': 0,
9 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 'command_buffer/tests/gl_dynamic_config_unittest.cc', 444 'command_buffer/tests/gl_dynamic_config_unittest.cc',
445 'command_buffer/tests/gl_ext_blend_func_extended_unittest.cc', 445 'command_buffer/tests/gl_ext_blend_func_extended_unittest.cc',
446 'command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc', 446 'command_buffer/tests/gl_ext_multisample_compatibility_unittest.cc',
447 'command_buffer/tests/gl_ext_srgb_unittest.cc', 447 'command_buffer/tests/gl_ext_srgb_unittest.cc',
448 'command_buffer/tests/gl_fence_sync_unittest.cc', 448 'command_buffer/tests/gl_fence_sync_unittest.cc',
449 'command_buffer/tests/gl_gpu_memory_buffer_unittest.cc', 449 'command_buffer/tests/gl_gpu_memory_buffer_unittest.cc',
450 'command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc', 450 'command_buffer/tests/gl_iosurface_readback_workaround_unittest.cc',
451 'command_buffer/tests/gl_lose_context_chromium_unittest.cc', 451 'command_buffer/tests/gl_lose_context_chromium_unittest.cc',
452 'command_buffer/tests/gl_manager.cc', 452 'command_buffer/tests/gl_manager.cc',
453 'command_buffer/tests/gl_manager.h', 453 'command_buffer/tests/gl_manager.h',
454 'command_buffer/tests/gl_native_gmb_backbuffer_unittest.cc',
454 'command_buffer/tests/gl_pointcoord_unittest.cc', 455 'command_buffer/tests/gl_pointcoord_unittest.cc',
455 'command_buffer/tests/gl_program_unittest.cc', 456 'command_buffer/tests/gl_program_unittest.cc',
456 'command_buffer/tests/gl_query_unittest.cc', 457 'command_buffer/tests/gl_query_unittest.cc',
457 'command_buffer/tests/gl_readback_unittest.cc', 458 'command_buffer/tests/gl_readback_unittest.cc',
458 'command_buffer/tests/gl_request_extension_unittest.cc', 459 'command_buffer/tests/gl_request_extension_unittest.cc',
459 'command_buffer/tests/gl_shared_resources_unittest.cc', 460 'command_buffer/tests/gl_shared_resources_unittest.cc',
460 'command_buffer/tests/gl_stream_draw_unittest.cc', 461 'command_buffer/tests/gl_stream_draw_unittest.cc',
461 'command_buffer/tests/gl_test_utils.cc', 462 'command_buffer/tests/gl_test_utils.cc',
462 'command_buffer/tests/gl_test_utils.h', 463 'command_buffer/tests/gl_test_utils.h',
463 'command_buffer/tests/gl_tests_main.cc', 464 'command_buffer/tests/gl_tests_main.cc',
464 'command_buffer/tests/gl_texture_mailbox_unittest.cc', 465 'command_buffer/tests/gl_texture_mailbox_unittest.cc',
465 'command_buffer/tests/gl_texture_storage_unittest.cc', 466 'command_buffer/tests/gl_texture_storage_unittest.cc',
466 'command_buffer/tests/gl_unittest.cc', 467 'command_buffer/tests/gl_unittest.cc',
467 'command_buffer/tests/gl_unittests_android.cc', 468 'command_buffer/tests/gl_unittests_android.cc',
468 'command_buffer/tests/gl_virtual_contexts_unittest.cc', 469 'command_buffer/tests/gl_virtual_contexts_unittest.cc',
469 'command_buffer/tests/occlusion_query_unittest.cc', 470 'command_buffer/tests/occlusion_query_unittest.cc',
471 'command_buffer/tests/texture_image_factory.cc',
472 'command_buffer/tests/texture_image_factory.h',
470 ], 473 ],
471 'conditions': [ 474 'conditions': [
472 ['OS == "android"', { 475 ['OS == "android"', {
473 'dependencies': [ 476 'dependencies': [
474 '../testing/android/native_test.gyp:native_test_native_code', 477 '../testing/android/native_test.gyp:native_test_native_code',
475 ], 478 ],
476 }], 479 }],
477 ['OS == "win"', { 480 ['OS == "win"', {
478 'dependencies': [ 481 'dependencies': [
479 '../third_party/angle/src/angle.gyp:libEGL', 482 '../third_party/angle/src/angle.gyp:libEGL',
(...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after
1210 ], 1213 ],
1211 'sources': [ 1214 'sources': [
1212 'gpu_unittests_apk.isolate', 1215 'gpu_unittests_apk.isolate',
1213 ], 1216 ],
1214 }, 1217 },
1215 ], 1218 ],
1216 }, 1219 },
1217 ], 1220 ],
1218 ], 1221 ],
1219 } 1222 }
OLDNEW
« no previous file with comments | « gpu/gles2_conform_support/egl/context.cc ('k') | gpu/ipc/service/gpu_command_buffer_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698