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

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: workaround gtf 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 { 420 {
421 # GN version: //gpu:command_buffer_gles2 421 # GN version: //gpu:command_buffer_gles2
422 'target_name': 'command_buffer_gles2', 422 'target_name': 'command_buffer_gles2',
423 'type': 'shared_library', 423 'type': 'shared_library',
424 'dependencies': [ 424 'dependencies': [
425 '../base/base.gyp:base', 425 '../base/base.gyp:base',
426 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 426 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
427 '../gpu/gpu.gyp:command_buffer_service', 427 '../gpu/gpu.gyp:command_buffer_service',
428 '../ui/gfx/gfx.gyp:gfx_geometry', 428 '../ui/gfx/gfx.gyp:gfx_geometry',
429 '../ui/gl/gl.gyp:gl', 429 '../ui/gl/gl.gyp:gl',
430 'command_buffer/command_buffer.gyp:gles2_utils',
430 'gles2_c_lib', 431 'gles2_c_lib',
431 'gles2_implementation', 432 'gles2_implementation',
432 ], 433 ],
433 'sources': [ 434 'sources': [
434 # Note: sources list duplicated in GN build. 435 # Note: sources list duplicated in GN build.
435 # TODO(hendrikw): Move egl out of gles2_conform_support. 436 # TODO(hendrikw): Move egl out of gles2_conform_support.
436 'gles2_conform_support/egl/config.cc', 437 'gles2_conform_support/egl/config.cc',
437 'gles2_conform_support/egl/config.h', 438 'gles2_conform_support/egl/config.h',
439 'gles2_conform_support/egl/context.cc',
440 'gles2_conform_support/egl/context.h',
438 'gles2_conform_support/egl/display.cc', 441 'gles2_conform_support/egl/display.cc',
439 'gles2_conform_support/egl/display.h', 442 'gles2_conform_support/egl/display.h',
440 'gles2_conform_support/egl/egl.cc', 443 'gles2_conform_support/egl/egl.cc',
441 'gles2_conform_support/egl/surface.cc', 444 'gles2_conform_support/egl/surface.cc',
442 'gles2_conform_support/egl/surface.h', 445 'gles2_conform_support/egl/surface.h',
443 'gles2_conform_support/egl/test_support.cc', 446 'gles2_conform_support/egl/test_support.cc',
444 'gles2_conform_support/egl/test_support.h', 447 'gles2_conform_support/egl/test_support.h',
448 'gles2_conform_support/egl/thread_state.cc',
449 'gles2_conform_support/egl/thread_state.h',
445 ], 450 ],
446 'defines': [ 451 'defines': [
447 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', 452 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY',
448 'EGLAPIENTRY=', 453 'EGLAPIENTRY=',
449 ], 454 ],
450 'conditions': [ 455 'conditions': [
451 ['OS=="win"', { 456 ['OS=="win"', {
452 'defines': [ 457 'defines': [
453 'EGLAPI=__declspec(dllexport)', 458 'EGLAPI=__declspec(dllexport)',
454 ], 459 ],
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 ], 977 ],
973 'sources': [ 978 'sources': [
974 'gpu_unittests_apk.isolate', 979 'gpu_unittests_apk.isolate',
975 ], 980 ],
976 }, 981 },
977 ], 982 ],
978 }, 983 },
979 ], 984 ],
980 ], 985 ],
981 } 986 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698