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