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

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: win fixes Created 4 years, 8 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 'build_angle_deqp_tests%': 0, 8 'build_angle_deqp_tests%': 0,
9 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 { 508 {
509 # GN version: //gpu:command_buffer_gles2 509 # GN version: //gpu:command_buffer_gles2
510 'target_name': 'command_buffer_gles2', 510 'target_name': 'command_buffer_gles2',
511 'type': 'shared_library', 511 'type': 'shared_library',
512 'dependencies': [ 512 'dependencies': [
513 '../base/base.gyp:base', 513 '../base/base.gyp:base',
514 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 514 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
515 '../gpu/gpu.gyp:command_buffer_service', 515 '../gpu/gpu.gyp:command_buffer_service',
516 '../ui/gfx/gfx.gyp:gfx_geometry', 516 '../ui/gfx/gfx.gyp:gfx_geometry',
517 '../ui/gl/gl.gyp:gl', 517 '../ui/gl/gl.gyp:gl',
518 'command_buffer/command_buffer.gyp:gles2_utils',
518 'gles2_c_lib', 519 'gles2_c_lib',
519 'gles2_implementation', 520 'gles2_implementation',
520 ], 521 ],
521 'sources': [ 522 'sources': [
522 # Note: sources list duplicated in GN build. 523 # Note: sources list duplicated in GN build.
523 # TODO(hendrikw): Move egl out of gles2_conform_support. 524 # TODO(hendrikw): Move egl out of gles2_conform_support.
524 'gles2_conform_support/egl/config.cc', 525 'gles2_conform_support/egl/config.cc',
525 'gles2_conform_support/egl/config.h', 526 'gles2_conform_support/egl/config.h',
527 'gles2_conform_support/egl/context.cc',
528 'gles2_conform_support/egl/context.h',
526 'gles2_conform_support/egl/display.cc', 529 'gles2_conform_support/egl/display.cc',
527 'gles2_conform_support/egl/display.h', 530 'gles2_conform_support/egl/display.h',
528 'gles2_conform_support/egl/egl.cc', 531 'gles2_conform_support/egl/egl.cc',
529 'gles2_conform_support/egl/surface.cc', 532 'gles2_conform_support/egl/surface.cc',
530 'gles2_conform_support/egl/surface.h', 533 'gles2_conform_support/egl/surface.h',
531 'gles2_conform_support/egl/test_support.cc', 534 'gles2_conform_support/egl/test_support.cc',
532 'gles2_conform_support/egl/test_support.h', 535 'gles2_conform_support/egl/test_support.h',
536 'gles2_conform_support/egl/thread_state.cc',
537 'gles2_conform_support/egl/thread_state.h',
533 ], 538 ],
534 'defines': [ 539 'defines': [
535 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', 540 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY',
536 'EGLAPIENTRY=', 541 'EGLAPIENTRY=',
537 ], 542 ],
538 'conditions': [ 543 'conditions': [
539 ['OS=="win"', { 544 ['OS=="win"', {
540 'defines': [ 545 'defines': [
541 'EGLAPI=__declspec(dllexport)', 546 'EGLAPI=__declspec(dllexport)',
542 ], 547 ],
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
1151 ], 1156 ],
1152 'sources': [ 1157 'sources': [
1153 'gpu_unittests_apk.isolate', 1158 'gpu_unittests_apk.isolate',
1154 ], 1159 ],
1155 }, 1160 },
1156 ], 1161 ],
1157 }, 1162 },
1158 ], 1163 ],
1159 ], 1164 ],
1160 } 1165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698