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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 9625029: Add a very simple example pepper plugin that uses a 3d context (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reinitialize context off of a timer instead of directly in the lost context callback Created 8 years, 9 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 | « ppapi/examples/gles2/gles2.html ('k') | no next file » | 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) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ppapi_example', 8 'target_name': 'ppapi_example',
9 'dependencies': [ 9 'dependencies': [
10 'ppapi.gyp:ppapi_cpp' 10 'ppapi.gyp:ppapi_cpp'
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 'target_name': 'ppapi_example_url_loader', 359 'target_name': 'ppapi_example_url_loader',
360 'dependencies': [ 360 'dependencies': [
361 'ppapi_example_skeleton', 361 'ppapi_example_skeleton',
362 'ppapi.gyp:ppapi_cpp', 362 'ppapi.gyp:ppapi_cpp',
363 ], 363 ],
364 'sources': [ 364 'sources': [
365 'examples/url_loader/streaming.cc', 365 'examples/url_loader/streaming.cc',
366 ], 366 ],
367 }, 367 },
368 { 368 {
369 'target_name': 'ppapi_example_gles2',
370 'dependencies': [
371 'ppapi_example_skeleton',
372 'ppapi.gyp:ppapi_cpp',
373 'ppapi.gyp:ppapi_gles2',
374 'ppapi.gyp:ppapi_egl',
375 ],
376 'include_dirs': [
377 'lib/gl/include',
378 ],
379 'sources': [
380 'examples/gles2/gles2.cc',
381 ],
382 },
383 {
369 'target_name': 'ppapi_example_video_decode', 384 'target_name': 'ppapi_example_video_decode',
370 'dependencies': [ 385 'dependencies': [
371 'ppapi_example_skeleton', 386 'ppapi_example_skeleton',
372 'ppapi.gyp:ppapi_cpp', 387 'ppapi.gyp:ppapi_cpp',
373 'ppapi.gyp:ppapi_gles2', 388 'ppapi.gyp:ppapi_gles2',
374 'ppapi.gyp:ppapi_egl', 389 'ppapi.gyp:ppapi_egl',
375 ], 390 ],
376 'include_dirs': [ 391 'include_dirs': [
377 'lib/gl/include', 392 'lib/gl/include',
378 ], 393 ],
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 'dependencies': [ 426 'dependencies': [
412 'ppapi_example_skeleton', 427 'ppapi_example_skeleton',
413 'ppapi.gyp:ppapi_cpp', 428 'ppapi.gyp:ppapi_cpp',
414 ], 429 ],
415 'sources': [ 430 'sources': [
416 'examples/printing/printing.cc', 431 'examples/printing/printing.cc',
417 ], 432 ],
418 }, 433 },
419 ], 434 ],
420 } 435 }
OLDNEW
« no previous file with comments | « ppapi/examples/gles2/gles2.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698