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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 '<@(gles2_c_lib_source_files)', | 142 '<@(gles2_c_lib_source_files)', |
143 'command_buffer/client/client_test_helper.cc', | 143 'command_buffer/client/client_test_helper.cc', |
144 'command_buffer/client/client_test_helper.h', | 144 'command_buffer/client/client_test_helper.h', |
145 'command_buffer/client/cmd_buffer_helper_test.cc', | 145 'command_buffer/client/cmd_buffer_helper_test.cc', |
146 'command_buffer/client/fenced_allocator_test.cc', | 146 'command_buffer/client/fenced_allocator_test.cc', |
147 'command_buffer/client/gles2_implementation_unittest.cc', | 147 'command_buffer/client/gles2_implementation_unittest.cc', |
148 'command_buffer/client/mapped_memory_unittest.cc', | 148 'command_buffer/client/mapped_memory_unittest.cc', |
149 'command_buffer/client/query_tracker_unittest.cc', | 149 'command_buffer/client/query_tracker_unittest.cc', |
150 'command_buffer/client/program_info_manager_unittest.cc', | 150 'command_buffer/client/program_info_manager_unittest.cc', |
151 'command_buffer/client/ring_buffer_test.cc', | 151 'command_buffer/client/ring_buffer_test.cc', |
| 152 'command_buffer/client/share_group_unittest.cc', |
152 'command_buffer/client/transfer_buffer_unittest.cc', | 153 'command_buffer/client/transfer_buffer_unittest.cc', |
153 'command_buffer/common/bitfield_helpers_test.cc', | 154 'command_buffer/common/bitfield_helpers_test.cc', |
154 'command_buffer/common/command_buffer_mock.cc', | 155 'command_buffer/common/command_buffer_mock.cc', |
155 'command_buffer/common/command_buffer_mock.h', | 156 'command_buffer/common/command_buffer_mock.h', |
156 'command_buffer/common/command_buffer_shared_test.cc', | 157 'command_buffer/common/command_buffer_shared_test.cc', |
157 'command_buffer/common/gles2_cmd_format_test.cc', | 158 'command_buffer/common/gles2_cmd_format_test.cc', |
158 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 159 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
159 'command_buffer/common/gles2_cmd_utils_unittest.cc', | 160 'command_buffer/common/gles2_cmd_utils_unittest.cc', |
160 'command_buffer/common/id_allocator_test.cc', | 161 'command_buffer/common/id_allocator_test.cc', |
161 'command_buffer/common/trace_event.h', | 162 'command_buffer/common/trace_event.h', |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 ], | 209 ], |
209 'sources': [ | 210 'sources': [ |
210 'command_buffer/common/gl_mock.h', | 211 'command_buffer/common/gl_mock.h', |
211 'command_buffer/common/gl_mock.cc', | 212 'command_buffer/common/gl_mock.cc', |
212 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 213 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
213 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 214 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
214 ], | 215 ], |
215 }, | 216 }, |
216 ], | 217 ], |
217 } | 218 } |
OLD | NEW |