| 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', |
| 11 ], | 11 ], |
| 12 'targets': [ | 12 'targets': [ |
| 13 { | 13 { |
| 14 # Library emulates GLES2 using command_buffers. | 14 # Library emulates GLES2 using command_buffers. |
| 15 'target_name': 'gles2_implementation', | 15 'target_name': 'gles2_implementation', |
| 16 'type': '<(component)', | 16 'type': '<(component)', |
| 17 'dependencies': [ | 17 'dependencies': [ |
| 18 '../base/base.gyp:base', | 18 '../base/base.gyp:base', |
| 19 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 19 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 20 '../third_party/khronos/khronos.gyp:khronos_headers', | 20 '../third_party/khronos/khronos.gyp:khronos_headers', |
| 21 '../ui/gl/gl.gyp:gl', | 21 '../ui/gl/gl.gyp:gl', |
| 22 '../ui/gfx/gfx.gyp:gfx', | 22 '../ui/gfx/gfx.gyp:gfx', |
| 23 '../ui/gfx/gfx.gyp:gfx_geometry', | 23 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 24 'command_buffer/command_buffer.gyp:gles2_utils', | 24 'command_buffer/command_buffer.gyp:gles2_utils', |
| 25 'gles2_cmd_helper', | 25 'gles2_cmd_helper', |
| 26 'gpu', |
| 26 ], | 27 ], |
| 27 'defines': [ | 28 'defines': [ |
| 28 'GLES2_IMPL_IMPLEMENTATION', | 29 'GLES2_IMPL_IMPLEMENTATION', |
| 29 ], | 30 ], |
| 30 'sources': [ | 31 'sources': [ |
| 31 '<@(gles2_implementation_source_files)', | 32 '<@(gles2_implementation_source_files)', |
| 32 'command_buffer/client/gl_in_process_context.h', | 33 'command_buffer/client/gl_in_process_context.h', |
| 33 'command_buffer/client/gl_in_process_context.cc', | 34 'command_buffer/client/gl_in_process_context.cc', |
| 34 ], | 35 ], |
| 35 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 36 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<
(SHARED_LIB_SUFFIX)', | 583 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<
(SHARED_LIB_SUFFIX)', |
| 583 }, | 584 }, |
| 584 'includes': [ | 585 'includes': [ |
| 585 '../build/apk_test.gypi', | 586 '../build/apk_test.gypi', |
| 586 ], | 587 ], |
| 587 }, | 588 }, |
| 588 ], | 589 ], |
| 589 }], | 590 }], |
| 590 ], | 591 ], |
| 591 } | 592 } |
| OLD | NEW |