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

Side by Side Diff: gpu/gpu.gyp

Issue 6883179: Rework FlushSync to return early if commands have been processed since the last update (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: style Created 9 years, 7 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/demos/framework/window.cc ('k') | gpu/ipc/gpu_command_buffer_traits.cc » ('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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 'gles2_c_lib', 346 'gles2_c_lib',
347 ], 347 ],
348 'sources': [ 348 'sources': [
349 'command_buffer/client/gles2_demo_c.h', 349 'command_buffer/client/gles2_demo_c.h',
350 'command_buffer/client/gles2_demo_c.c', 350 'command_buffer/client/gles2_demo_c.c',
351 'command_buffer/client/gles2_demo_cc.h', 351 'command_buffer/client/gles2_demo_cc.h',
352 'command_buffer/client/gles2_demo_cc.cc', 352 'command_buffer/client/gles2_demo_cc.cc',
353 ], 353 ],
354 }, 354 },
355 { 355 {
356 'target_name': 'pgl',
357 'type': 'static_library',
358 'dependencies': [
359 'command_buffer_client',
360 'gles2_c_lib',
361 '../third_party/npapi/npapi.gyp:npapi',
362 ],
363 'include_dirs': [
364 '..',
365 ],
366 'all_dependent_settings': {
367 'include_dirs': [
368 '../third_party/npapi/bindings',
369 ],
370 },
371 'sources': [
372 'pgl/command_buffer_pepper.cc',
373 'pgl/command_buffer_pepper.h',
374 'pgl/pgl_proc_address.cc',
375 'pgl/pgl.cc',
376 'pgl/pgl.h',
377 ],
378 },
379 {
380 'target_name': 'gpu_ipc', 356 'target_name': 'gpu_ipc',
381 'type': 'static_library', 357 'type': 'static_library',
382 'dependencies': [ 358 'dependencies': [
383 'command_buffer_client', 359 'command_buffer_client',
384 'gles2_c_lib', 360 'gles2_c_lib',
385 '../base/base.gyp:base', 361 '../base/base.gyp:base',
386 ], 362 ],
387 'include_dirs': [ 363 'include_dirs': [
388 '..', 364 '..',
389 ], 365 ],
(...skipping 30 matching lines...) Expand all
420 }, 396 },
421 ], 397 ],
422 ], 398 ],
423 } 399 }
424 400
425 # Local Variables: 401 # Local Variables:
426 # tab-width:2 402 # tab-width:2
427 # indent-tabs-mode:nil 403 # indent-tabs-mode:nil
428 # End: 404 # End:
429 # vim: set expandtab tabstop=2 shiftwidth=2: 405 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gpu/demos/framework/window.cc ('k') | gpu/ipc/gpu_command_buffer_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698