OLD | NEW |
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 Loading... |
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', | |
519 'gles2_c_lib', | 518 'gles2_c_lib', |
520 'gles2_implementation', | 519 'gles2_implementation', |
521 ], | 520 ], |
522 'sources': [ | 521 'sources': [ |
523 # Note: sources list duplicated in GN build. | 522 # Note: sources list duplicated in GN build. |
524 # TODO(hendrikw): Move egl out of gles2_conform_support. | 523 # TODO(hendrikw): Move egl out of gles2_conform_support. |
525 'gles2_conform_support/egl/config.cc', | 524 'gles2_conform_support/egl/config.cc', |
526 'gles2_conform_support/egl/config.h', | 525 'gles2_conform_support/egl/config.h', |
527 'gles2_conform_support/egl/context.cc', | |
528 'gles2_conform_support/egl/context.h', | |
529 'gles2_conform_support/egl/display.cc', | 526 'gles2_conform_support/egl/display.cc', |
530 'gles2_conform_support/egl/display.h', | 527 'gles2_conform_support/egl/display.h', |
531 'gles2_conform_support/egl/egl.cc', | 528 'gles2_conform_support/egl/egl.cc', |
532 'gles2_conform_support/egl/surface.cc', | 529 'gles2_conform_support/egl/surface.cc', |
533 'gles2_conform_support/egl/surface.h', | 530 'gles2_conform_support/egl/surface.h', |
534 'gles2_conform_support/egl/test_support.cc', | 531 'gles2_conform_support/egl/test_support.cc', |
535 'gles2_conform_support/egl/test_support.h', | 532 'gles2_conform_support/egl/test_support.h', |
536 'gles2_conform_support/egl/thread_state.cc', | |
537 'gles2_conform_support/egl/thread_state.h', | |
538 ], | 533 ], |
539 'defines': [ | 534 'defines': [ |
540 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', | 535 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', |
541 'EGLAPIENTRY=', | 536 'EGLAPIENTRY=', |
542 ], | 537 ], |
543 'conditions': [ | 538 'conditions': [ |
544 ['OS=="win"', { | 539 ['OS=="win"', { |
545 'defines': [ | 540 'defines': [ |
546 'EGLAPI=__declspec(dllexport)', | 541 'EGLAPI=__declspec(dllexport)', |
547 ], | 542 ], |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1156 ], | 1151 ], |
1157 'sources': [ | 1152 'sources': [ |
1158 'gpu_unittests_apk.isolate', | 1153 'gpu_unittests_apk.isolate', |
1159 ], | 1154 ], |
1160 }, | 1155 }, |
1161 ], | 1156 ], |
1162 }, | 1157 }, |
1163 ], | 1158 ], |
1164 ], | 1159 ], |
1165 } | 1160 } |
OLD | NEW |