OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 '..', | 171 '..', |
172 ], | 172 ], |
173 'all_dependent_settings': { | 173 'all_dependent_settings': { |
174 'include_dirs': [ | 174 'include_dirs': [ |
175 '..', | 175 '..', |
176 ], | 176 ], |
177 }, | 177 }, |
178 'dependencies': [ | 178 'dependencies': [ |
179 'command_buffer_common', | 179 'command_buffer_common', |
180 'gpu_common', | 180 'gpu_common', |
181 '../app/app.gyp:app_base', | |
182 '../base/base.gyp:base', | 181 '../base/base.gyp:base', |
| 182 '../ui/gfx/gl/gl.gyp:gl', |
| 183 '../ui/gfx/surface/surface.gyp:surface', |
183 '../ui/ui.gyp:ui_gfx', | 184 '../ui/ui.gyp:ui_gfx', |
184 '../ui/gfx/surface/surface.gyp:surface', | |
185 '../third_party/angle/src/build_angle.gyp:translator_glsl', | 185 '../third_party/angle/src/build_angle.gyp:translator_glsl', |
186 ], | 186 ], |
187 'sources': [ | 187 'sources': [ |
188 'command_buffer/service/buffer_manager.h', | 188 'command_buffer/service/buffer_manager.h', |
189 'command_buffer/service/buffer_manager.cc', | 189 'command_buffer/service/buffer_manager.cc', |
190 'command_buffer/service/framebuffer_manager.h', | 190 'command_buffer/service/framebuffer_manager.h', |
191 'command_buffer/service/framebuffer_manager.cc', | 191 'command_buffer/service/framebuffer_manager.cc', |
192 'command_buffer/service/cmd_buffer_engine.h', | 192 'command_buffer/service/cmd_buffer_engine.h', |
193 'command_buffer/service/cmd_parser.cc', | 193 'command_buffer/service/cmd_parser.cc', |
194 'command_buffer/service/cmd_parser.h', | 194 'command_buffer/service/cmd_parser.h', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 ], | 237 ], |
238 }, | 238 }, |
239 { | 239 { |
240 'target_name': 'gpu_unittests', | 240 'target_name': 'gpu_unittests', |
241 'type': 'executable', | 241 'type': 'executable', |
242 'dependencies': [ | 242 'dependencies': [ |
243 '../app/app.gyp:app_base', | 243 '../app/app.gyp:app_base', |
244 '../testing/gmock.gyp:gmock', | 244 '../testing/gmock.gyp:gmock', |
245 '../testing/gmock.gyp:gmock_main', | 245 '../testing/gmock.gyp:gmock_main', |
246 '../testing/gtest.gyp:gtest', | 246 '../testing/gtest.gyp:gtest', |
| 247 '../ui/gfx/gl/gl.gyp:gl', |
247 'command_buffer_client', | 248 'command_buffer_client', |
248 'command_buffer_common', | 249 'command_buffer_common', |
249 'command_buffer_service', | 250 'command_buffer_service', |
250 'gpu_common', | 251 'gpu_common', |
251 'gpu_unittest_utils', | 252 'gpu_unittest_utils', |
252 'gles2_implementation_client_side_arrays', | 253 'gles2_implementation_client_side_arrays', |
253 'gles2_cmd_helper', | 254 'gles2_cmd_helper', |
254 ], | 255 ], |
255 'sources': [ | 256 'sources': [ |
256 '<@(gles2_c_lib_source_files)', | 257 '<@(gles2_c_lib_source_files)', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 'command_buffer/service/shader_translator_unittest.cc', | 301 'command_buffer/service/shader_translator_unittest.cc', |
301 'command_buffer/service/test_helper.h', | 302 'command_buffer/service/test_helper.h', |
302 'command_buffer/service/test_helper.cc', | 303 'command_buffer/service/test_helper.cc', |
303 'command_buffer/service/texture_manager_unittest.cc', | 304 'command_buffer/service/texture_manager_unittest.cc', |
304 ], | 305 ], |
305 }, | 306 }, |
306 { | 307 { |
307 'target_name': 'gpu_unittest_utils', | 308 'target_name': 'gpu_unittest_utils', |
308 'type': 'static_library', | 309 'type': 'static_library', |
309 'dependencies': [ | 310 'dependencies': [ |
310 '../app/app.gyp:app_base', | |
311 '../testing/gmock.gyp:gmock', | 311 '../testing/gmock.gyp:gmock', |
312 '../testing/gtest.gyp:gtest', | 312 '../testing/gtest.gyp:gtest', |
| 313 '../ui/gfx/gl/gl.gyp:gl', |
313 ], | 314 ], |
314 'include_dirs': [ | 315 'include_dirs': [ |
315 '..', | 316 '..', |
316 ], | 317 ], |
317 'sources': [ | 318 'sources': [ |
318 'command_buffer/common/gl_mock.h', | 319 'command_buffer/common/gl_mock.h', |
319 'command_buffer/common/gl_mock.cc', | 320 'command_buffer/common/gl_mock.cc', |
320 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 321 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
321 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 322 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
322 ], | 323 ], |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 }, | 403 }, |
403 ], | 404 ], |
404 ], | 405 ], |
405 } | 406 } |
406 | 407 |
407 # Local Variables: | 408 # Local Variables: |
408 # tab-width:2 | 409 # tab-width:2 |
409 # indent-tabs-mode:nil | 410 # indent-tabs-mode:nil |
410 # End: | 411 # End: |
411 # vim: set expandtab tabstop=2 shiftwidth=2: | 412 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |