| 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 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'gpu_common.gypi', | 10 'gpu_common.gypi', |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 { | 420 { |
| 421 # GN version: //gpu:command_buffer_gles2 | 421 # GN version: //gpu:command_buffer_gles2 |
| 422 'target_name': 'command_buffer_gles2', | 422 'target_name': 'command_buffer_gles2', |
| 423 'type': 'shared_library', | 423 'type': 'shared_library', |
| 424 'dependencies': [ | 424 'dependencies': [ |
| 425 '../base/base.gyp:base', | 425 '../base/base.gyp:base', |
| 426 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', | 426 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', |
| 427 '../gpu/gpu.gyp:command_buffer_service', | 427 '../gpu/gpu.gyp:command_buffer_service', |
| 428 '../ui/gfx/gfx.gyp:gfx_geometry', | 428 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 429 '../ui/gl/gl.gyp:gl', | 429 '../ui/gl/gl.gyp:gl', |
| 430 'command_buffer/command_buffer.gyp:gles2_utils', | |
| 431 'gles2_c_lib', | 430 'gles2_c_lib', |
| 432 'gles2_implementation', | 431 'gles2_implementation', |
| 433 ], | 432 ], |
| 434 'sources': [ | 433 'sources': [ |
| 435 # Note: sources list duplicated in GN build. | 434 # Note: sources list duplicated in GN build. |
| 436 # TODO(hendrikw): Move egl out of gles2_conform_support. | 435 # TODO(hendrikw): Move egl out of gles2_conform_support. |
| 437 'gles2_conform_support/egl/config.cc', | 436 'gles2_conform_support/egl/config.cc', |
| 438 'gles2_conform_support/egl/config.h', | 437 'gles2_conform_support/egl/config.h', |
| 439 'gles2_conform_support/egl/context.cc', | |
| 440 'gles2_conform_support/egl/context.h', | |
| 441 'gles2_conform_support/egl/display.cc', | 438 'gles2_conform_support/egl/display.cc', |
| 442 'gles2_conform_support/egl/display.h', | 439 'gles2_conform_support/egl/display.h', |
| 443 'gles2_conform_support/egl/egl.cc', | 440 'gles2_conform_support/egl/egl.cc', |
| 444 'gles2_conform_support/egl/surface.cc', | 441 'gles2_conform_support/egl/surface.cc', |
| 445 'gles2_conform_support/egl/surface.h', | 442 'gles2_conform_support/egl/surface.h', |
| 446 'gles2_conform_support/egl/test_support.cc', | 443 'gles2_conform_support/egl/test_support.cc', |
| 447 'gles2_conform_support/egl/test_support.h', | 444 'gles2_conform_support/egl/test_support.h', |
| 448 'gles2_conform_support/egl/thread_state.cc', | |
| 449 'gles2_conform_support/egl/thread_state.h', | |
| 450 ], | 445 ], |
| 451 'defines': [ | 446 'defines': [ |
| 452 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', | 447 'COMMAND_BUFFER_GLES_LIB_SUPPORT_ONLY', |
| 453 'EGLAPIENTRY=', | 448 'EGLAPIENTRY=', |
| 454 ], | 449 ], |
| 455 'conditions': [ | 450 'conditions': [ |
| 456 ['OS=="win"', { | 451 ['OS=="win"', { |
| 457 'defines': [ | 452 'defines': [ |
| 458 'EGLAPI=__declspec(dllexport)', | 453 'EGLAPI=__declspec(dllexport)', |
| 459 ], | 454 ], |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 977 ], | 972 ], |
| 978 'sources': [ | 973 'sources': [ |
| 979 'gpu_unittests_apk.isolate', | 974 'gpu_unittests_apk.isolate', |
| 980 ], | 975 ], |
| 981 }, | 976 }, |
| 982 ], | 977 ], |
| 983 }, | 978 }, |
| 984 ], | 979 ], |
| 985 ], | 980 ], |
| 986 } | 981 } |
| OLD | NEW |