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