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

Side by Side Diff: gpu/gpu.gyp

Issue 6400007: Implement proxy for 3d-related interfaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/ipc/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 ], 340 ],
341 }, 341 },
342 'sources': [ 342 'sources': [
343 'pgl/command_buffer_pepper.cc', 343 'pgl/command_buffer_pepper.cc',
344 'pgl/command_buffer_pepper.h', 344 'pgl/command_buffer_pepper.h',
345 'pgl/pgl_proc_address.cc', 345 'pgl/pgl_proc_address.cc',
346 'pgl/pgl.cc', 346 'pgl/pgl.cc',
347 'pgl/pgl.h', 347 'pgl/pgl.h',
348 ], 348 ],
349 }, 349 },
350 {
351 'target_name': 'gpu_ipc',
352 'type': 'static_library',
353 'dependencies': [
354 'command_buffer_client',
355 'gles2_c_lib',
356 ],
357 'include_dirs': [
358 '..',
359 ],
360 'sources': [
361 'ipc/gpu_command_buffer_traits.cc',
362 'ipc/gpu_command_buffer_traits.h',
363 ],
364 },
350 ], 365 ],
351 'conditions': [ 366 'conditions': [
352 ['OS == "win"', 367 ['OS == "win"',
353 { 368 {
354 'targets': [ 369 'targets': [
355 { 370 {
356 'target_name': 'gles2_demo', 371 'target_name': 'gles2_demo',
357 'type': 'executable', 372 'type': 'executable',
358 'dependencies': [ 373 'dependencies': [
359 'command_buffer_service', 374 'command_buffer_service',
(...skipping 15 matching lines...) Expand all
375 }, 390 },
376 ], 391 ],
377 ], 392 ],
378 } 393 }
379 394
380 # Local Variables: 395 # Local Variables:
381 # tab-width:2 396 # tab-width:2
382 # indent-tabs-mode:nil 397 # indent-tabs-mode:nil
383 # End: 398 # End:
384 # vim: set expandtab tabstop=2 shiftwidth=2: 399 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/ipc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698