| 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 { | 513 { |
| 514 # GN version: //gpu:command_buffer_gles2 | 514 # GN version: //gpu:command_buffer_gles2 |
| 515 'target_name': 'command_buffer_gles2', | 515 'target_name': 'command_buffer_gles2', |
| 516 'type': 'shared_library', | 516 'type': 'shared_library', |
| 517 'dependencies': [ | 517 'dependencies': [ |
| 518 '../base/base.gyp:base', | 518 '../base/base.gyp:base', |
| 519 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', | 519 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', |
| 520 '../gpu/gpu.gyp:command_buffer_service', | 520 '../gpu/gpu.gyp:command_buffer_service', |
| 521 '../ui/gfx/gfx.gyp:gfx_geometry', | 521 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 522 '../ui/gl/gl.gyp:gl', | 522 '../ui/gl/gl.gyp:gl', |
| 523 'command_buffer/command_buffer.gyp:gles2_utils', |
| 523 'gles2_c_lib', | 524 'gles2_c_lib', |
| 524 'gles2_implementation', | 525 'gles2_implementation', |
| 525 ], | 526 ], |
| 526 'sources': [ | 527 'sources': [ |
| 527 # Note: sources list duplicated in GN build. | 528 # Note: sources list duplicated in GN build. |
| 528 # TODO(hendrikw): Move egl out of gles2_conform_support. | 529 # TODO(hendrikw): Move egl out of gles2_conform_support. |
| 529 'gles2_conform_support/egl/config.cc', | 530 'gles2_conform_support/egl/config.cc', |
| 530 'gles2_conform_support/egl/config.h', | 531 'gles2_conform_support/egl/config.h', |
| 532 'gles2_conform_support/egl/context.cc', |
| 533 'gles2_conform_support/egl/context.h', |
| 531 'gles2_conform_support/egl/display.cc', | 534 'gles2_conform_support/egl/display.cc', |
| 532 'gles2_conform_support/egl/display.h', | 535 'gles2_conform_support/egl/display.h', |
| 533 'gles2_conform_support/egl/egl.cc', | 536 'gles2_conform_support/egl/egl.cc', |
| 534 'gles2_conform_support/egl/surface.cc', | 537 'gles2_conform_support/egl/surface.cc', |
| 535 'gles2_conform_support/egl/surface.h', | 538 'gles2_conform_support/egl/surface.h', |
| 536 'gles2_conform_support/egl/test_support.cc', | 539 'gles2_conform_support/egl/test_support.cc', |
| 537 'gles2_conform_support/egl/test_support.h', | 540 'gles2_conform_support/egl/test_support.h', |
| 541 'gles2_conform_support/egl/thread_state.cc', |
| 542 'gles2_conform_support/egl/thread_state.h', |
| 538 ], | 543 ], |
| 539 'defines': [ | 544 'defines': [ |
| 540 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', | 545 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', |
| 541 'EGLAPIENTRY=', | 546 'EGLAPIENTRY=', |
| 542 ], | 547 ], |
| 543 'conditions': [ | 548 'conditions': [ |
| 544 ['OS=="win"', { | 549 ['OS=="win"', { |
| 545 'defines': [ | 550 'defines': [ |
| 546 'EGLAPI=__declspec(dllexport)', | 551 'EGLAPI=__declspec(dllexport)', |
| 547 ], | 552 ], |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1193 ], | 1198 ], |
| 1194 'sources': [ | 1199 'sources': [ |
| 1195 'gpu_unittests_apk.isolate', | 1200 'gpu_unittests_apk.isolate', |
| 1196 ], | 1201 ], |
| 1197 }, | 1202 }, |
| 1198 ], | 1203 ], |
| 1199 }, | 1204 }, |
| 1200 ], | 1205 ], |
| 1201 ], | 1206 ], |
| 1202 } | 1207 } |
| OLD | NEW |