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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # These are defined here because we need to build this library twice. Once | 8 # These are defined here because we need to build this library twice. Once |
9 # with extra parameter checking. Once with no parameter checking to be 100% | 9 # with extra parameter checking. Once with no parameter checking to be 100% |
10 # OpenGL ES 2.0 compliant for the conformance tests. | 10 # OpenGL ES 2.0 compliant for the conformance tests. |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 'command_buffer/client/cmd_buffer_helper_test.cc', | 183 'command_buffer/client/cmd_buffer_helper_test.cc', |
184 'command_buffer/client/fenced_allocator_test.cc', | 184 'command_buffer/client/fenced_allocator_test.cc', |
185 'command_buffer/client/gles2_implementation_unittest.cc', | 185 'command_buffer/client/gles2_implementation_unittest.cc', |
186 'command_buffer/client/mapped_memory_unittest.cc', | 186 'command_buffer/client/mapped_memory_unittest.cc', |
187 'command_buffer/client/program_info_manager_unittest.cc', | 187 'command_buffer/client/program_info_manager_unittest.cc', |
188 'command_buffer/client/ring_buffer_test.cc', | 188 'command_buffer/client/ring_buffer_test.cc', |
189 'command_buffer/client/transfer_buffer_unittest.cc', | 189 'command_buffer/client/transfer_buffer_unittest.cc', |
190 'command_buffer/common/bitfield_helpers_test.cc', | 190 'command_buffer/common/bitfield_helpers_test.cc', |
191 'command_buffer/common/command_buffer_mock.cc', | 191 'command_buffer/common/command_buffer_mock.cc', |
192 'command_buffer/common/command_buffer_mock.h', | 192 'command_buffer/common/command_buffer_mock.h', |
| 193 'command_buffer/common/command_buffer_shared_test.cc', |
193 'command_buffer/common/gles2_cmd_format_test.cc', | 194 'command_buffer/common/gles2_cmd_format_test.cc', |
194 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 195 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
195 'command_buffer/common/gles2_cmd_utils_unittest.cc', | 196 'command_buffer/common/gles2_cmd_utils_unittest.cc', |
196 'command_buffer/common/id_allocator_test.cc', | 197 'command_buffer/common/id_allocator_test.cc', |
197 'command_buffer/common/trace_event.h', | 198 'command_buffer/common/trace_event.h', |
198 'command_buffer/common/unittest_main.cc', | 199 'command_buffer/common/unittest_main.cc', |
199 'command_buffer/service/buffer_manager_unittest.cc', | 200 'command_buffer/service/buffer_manager_unittest.cc', |
200 'command_buffer/service/cmd_parser_test.cc', | 201 'command_buffer/service/cmd_parser_test.cc', |
201 'command_buffer/service/common_decoder_unittest.cc', | 202 'command_buffer/service/common_decoder_unittest.cc', |
202 'command_buffer/service/context_group_unittest.cc', | 203 'command_buffer/service/context_group_unittest.cc', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 'type': 'static_library', | 254 'type': 'static_library', |
254 'includes': [ | 255 'includes': [ |
255 'gpu_ipc.gypi', | 256 'gpu_ipc.gypi', |
256 ], | 257 ], |
257 'dependencies': [ | 258 'dependencies': [ |
258 'command_buffer_client', | 259 'command_buffer_client', |
259 ], | 260 ], |
260 }, | 261 }, |
261 ], | 262 ], |
262 } | 263 } |
OLD | NEW |