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

Side by Side Diff: gpu/gpu.gyp

Issue 1714883002: command_buffer_gles2: Implement EGL default Display as a global object (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@command_buffer_gles2-multiple-contexts
Patch Set: 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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 }, 417 },
418 { 418 {
419 # GN version: //gpu:command_buffer_gles2 419 # GN version: //gpu:command_buffer_gles2
420 'target_name': 'command_buffer_gles2', 420 'target_name': 'command_buffer_gles2',
421 'type': 'shared_library', 421 'type': 'shared_library',
422 'dependencies': [ 422 'dependencies': [
423 '../base/base.gyp:base', 423 '../base/base.gyp:base',
424 '../gpu/gpu.gyp:command_buffer_service', 424 '../gpu/gpu.gyp:command_buffer_service',
425 '../ui/gfx/gfx.gyp:gfx_geometry', 425 '../ui/gfx/gfx.gyp:gfx_geometry',
426 '../ui/gl/gl.gyp:gl', 426 '../ui/gl/gl.gyp:gl',
427 'command_buffer/command_buffer.gyp:gles2_utils',
427 'gles2_c_lib', 428 'gles2_c_lib',
428 'gles2_implementation', 429 'gles2_implementation',
429 ], 430 ],
430 'sources': [ 431 'sources': [
431 # Note: sources list duplicated in GN build. 432 # Note: sources list duplicated in GN build.
432 # TODO(hendrikw): Move egl out of gles2_conform_support. 433 # TODO(hendrikw): Move egl out of gles2_conform_support.
433 'gles2_conform_support/egl/config.cc', 434 'gles2_conform_support/egl/config.cc',
434 'gles2_conform_support/egl/config.h', 435 'gles2_conform_support/egl/config.h',
436 'gles2_conform_support/egl/context.cc',
437 'gles2_conform_support/egl/context.h',
435 'gles2_conform_support/egl/display.cc', 438 'gles2_conform_support/egl/display.cc',
436 'gles2_conform_support/egl/display.h', 439 'gles2_conform_support/egl/display.h',
437 'gles2_conform_support/egl/egl.cc', 440 'gles2_conform_support/egl/egl.cc',
438 'gles2_conform_support/egl/surface.cc', 441 'gles2_conform_support/egl/surface.cc',
439 'gles2_conform_support/egl/surface.h', 442 'gles2_conform_support/egl/surface.h',
440 'gles2_conform_support/egl/test_support.cc', 443 'gles2_conform_support/egl/test_support.cc',
441 'gles2_conform_support/egl/test_support.h', 444 'gles2_conform_support/egl/test_support.h',
445 'gles2_conform_support/egl/thread_state.cc',
446 'gles2_conform_support/egl/thread_state.h',
442 ], 447 ],
443 'defines': [ 448 'defines': [
444 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', 449 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY',
445 'EGLAPIENTRY=', 450 'EGLAPIENTRY=',
446 ], 451 ],
447 'conditions': [ 452 'conditions': [
448 ['OS=="win"', { 453 ['OS=="win"', {
449 'defines': [ 454 'defines': [
450 'EGLAPI=__declspec(dllexport)', 455 'EGLAPI=__declspec(dllexport)',
451 ], 456 ],
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
969 ], 974 ],
970 'sources': [ 975 'sources': [
971 'gpu_unittests_apk.isolate', 976 'gpu_unittests_apk.isolate',
972 ], 977 ],
973 }, 978 },
974 ], 979 ],
975 }, 980 },
976 ], 981 ],
977 ], 982 ],
978 } 983 }
OLDNEW
« gpu/gles2_conform_support/egl/thread_state.h ('K') | « gpu/gles2_conform_support/egl/thread_state.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698