| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # Library emulates GLES2 using command_buffers. | 8 # Library emulates GLES2 using command_buffers. |
| 9 'target_name': 'gles2_implementation', | 9 'target_name': 'gles2_implementation', |
| 10 'type': '<(component)', | 10 'type': '<(component)', |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 '../testing/gmock.gyp:gmock', | 123 '../testing/gmock.gyp:gmock', |
| 124 '../testing/gmock.gyp:gmock_main', | 124 '../testing/gmock.gyp:gmock_main', |
| 125 '../testing/gtest.gyp:gtest', | 125 '../testing/gtest.gyp:gtest', |
| 126 '../third_party/angle/src/build_angle.gyp:translator_glsl', | 126 '../third_party/angle/src/build_angle.gyp:translator_glsl', |
| 127 '../ui/gfx/gl/gl.gyp:gl', | 127 '../ui/gfx/gl/gl.gyp:gl', |
| 128 '../ui/ui.gyp:ui', | 128 '../ui/ui.gyp:ui', |
| 129 'command_buffer/command_buffer.gyp:gles2_utils', | 129 'command_buffer/command_buffer.gyp:gles2_utils', |
| 130 'command_buffer_client', | 130 'command_buffer_client', |
| 131 'command_buffer_common', | 131 'command_buffer_common', |
| 132 'command_buffer_service', | 132 'command_buffer_service', |
| 133 'gpu', |
| 133 'gpu_unittest_utils', | 134 'gpu_unittest_utils', |
| 134 'gles2_implementation_client_side_arrays', | 135 'gles2_implementation_client_side_arrays', |
| 135 'gles2_cmd_helper', | 136 'gles2_cmd_helper', |
| 136 ], | 137 ], |
| 137 'defines': [ | 138 'defines': [ |
| 138 'GLES2_C_LIB_IMPLEMENTATION', | 139 'GLES2_C_LIB_IMPLEMENTATION', |
| 139 ], | 140 ], |
| 140 'sources': [ | 141 'sources': [ |
| 141 '<@(gles2_c_lib_source_files)', | 142 '<@(gles2_c_lib_source_files)', |
| 142 'command_buffer/client/client_test_helper.cc', | 143 'command_buffer/client/client_test_helper.cc', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 ], | 208 ], |
| 208 'sources': [ | 209 'sources': [ |
| 209 'command_buffer/common/gl_mock.h', | 210 'command_buffer/common/gl_mock.h', |
| 210 'command_buffer/common/gl_mock.cc', | 211 'command_buffer/common/gl_mock.cc', |
| 211 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 212 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
| 212 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 213 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
| 213 ], | 214 ], |
| 214 }, | 215 }, |
| 215 ], | 216 ], |
| 216 } | 217 } |
| OLD | NEW |