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