Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Side by Side Diff: gpu/gpu.gyp

Issue 6250198: More out-of-lining of test code, along with a bunch of GMOCK objects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Really fix the gyp files this time Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 '../app/app.gyp:app_base', 313 '../app/app.gyp:app_base',
314 '../testing/gmock.gyp:gmock', 314 '../testing/gmock.gyp:gmock',
315 '../testing/gtest.gyp:gtest', 315 '../testing/gtest.gyp:gtest',
316 ], 316 ],
317 'include_dirs': [ 317 'include_dirs': [
318 '..', 318 '..',
319 ], 319 ],
320 'sources': [ 320 'sources': [
321 'command_buffer/common/gl_mock.h', 321 'command_buffer/common/gl_mock.h',
322 'command_buffer/common/gl_mock.cc', 322 'command_buffer/common/gl_mock.cc',
323 'command_buffer/service/gles2_cmd_decoder_mock.cc',
324 'command_buffer/service/gles2_cmd_decoder_mock.cc',
323 ], 325 ],
324 }, 326 },
325 { 327 {
326 'target_name': 'gles2_demo_lib', 328 'target_name': 'gles2_demo_lib',
327 'type': 'static_library', 329 'type': 'static_library',
328 'dependencies': [ 330 'dependencies': [
329 'command_buffer_client', 331 'command_buffer_client',
330 'gles2_c_lib', 332 'gles2_c_lib',
331 ], 333 ],
332 'sources': [ 334 'sources': [
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 }, 405 },
404 ], 406 ],
405 ], 407 ],
406 } 408 }
407 409
408 # Local Variables: 410 # Local Variables:
409 # tab-width:2 411 # tab-width:2
410 # indent-tabs-mode:nil 412 # indent-tabs-mode:nil
411 # End: 413 # End:
412 # vim: set expandtab tabstop=2 shiftwidth=2: 414 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698