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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 { | 503 { |
504 # GN version: //gpu:command_buffer_gles2 | 504 # GN version: //gpu:command_buffer_gles2 |
505 'target_name': 'command_buffer_gles2', | 505 'target_name': 'command_buffer_gles2', |
506 'type': 'shared_library', | 506 'type': 'shared_library', |
507 'dependencies': [ | 507 'dependencies': [ |
508 '../base/base.gyp:base', | 508 '../base/base.gyp:base', |
509 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', | 509 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', |
510 '../gpu/gpu.gyp:command_buffer_service', | 510 '../gpu/gpu.gyp:command_buffer_service', |
511 '../ui/gfx/gfx.gyp:gfx_geometry', | 511 '../ui/gfx/gfx.gyp:gfx_geometry', |
512 '../ui/gl/gl.gyp:gl', | 512 '../ui/gl/gl.gyp:gl', |
513 'command_buffer/command_buffer.gyp:gles2_utils', | |
514 'gles2_c_lib', | 513 'gles2_c_lib', |
515 'gles2_implementation', | 514 'gles2_implementation', |
516 ], | 515 ], |
517 'sources': [ | 516 'sources': [ |
518 # Note: sources list duplicated in GN build. | 517 # Note: sources list duplicated in GN build. |
519 # TODO(hendrikw): Move egl out of gles2_conform_support. | 518 # TODO(hendrikw): Move egl out of gles2_conform_support. |
520 'gles2_conform_support/egl/config.cc', | 519 'gles2_conform_support/egl/config.cc', |
521 'gles2_conform_support/egl/config.h', | 520 'gles2_conform_support/egl/config.h', |
522 'gles2_conform_support/egl/context.cc', | |
523 'gles2_conform_support/egl/context.h', | |
524 'gles2_conform_support/egl/display.cc', | 521 'gles2_conform_support/egl/display.cc', |
525 'gles2_conform_support/egl/display.h', | 522 'gles2_conform_support/egl/display.h', |
526 'gles2_conform_support/egl/egl.cc', | 523 'gles2_conform_support/egl/egl.cc', |
527 'gles2_conform_support/egl/surface.cc', | 524 'gles2_conform_support/egl/surface.cc', |
528 'gles2_conform_support/egl/surface.h', | 525 'gles2_conform_support/egl/surface.h', |
529 'gles2_conform_support/egl/test_support.cc', | 526 'gles2_conform_support/egl/test_support.cc', |
530 'gles2_conform_support/egl/test_support.h', | 527 'gles2_conform_support/egl/test_support.h', |
531 'gles2_conform_support/egl/thread_state.cc', | |
532 'gles2_conform_support/egl/thread_state.h', | |
533 ], | 528 ], |
534 'defines': [ | 529 'defines': [ |
535 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', | 530 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', |
536 'EGLAPIENTRY=', | 531 'EGLAPIENTRY=', |
537 ], | 532 ], |
538 'conditions': [ | 533 'conditions': [ |
539 ['OS=="win"', { | 534 ['OS=="win"', { |
540 'defines': [ | 535 'defines': [ |
541 'EGLAPI=__declspec(dllexport)', | 536 'EGLAPI=__declspec(dllexport)', |
542 ], | 537 ], |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1151 ], | 1146 ], |
1152 'sources': [ | 1147 'sources': [ |
1153 'gpu_unittests_apk.isolate', | 1148 'gpu_unittests_apk.isolate', |
1154 ], | 1149 ], |
1155 }, | 1150 }, |
1156 ], | 1151 ], |
1157 }, | 1152 }, |
1158 ], | 1153 ], |
1159 ], | 1154 ], |
1160 } | 1155 } |
OLD | NEW |