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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 937643006: Pepper: add video_encoder example (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bbudge-ppb-video-encoder-impl
Patch Set: Always encode the latest frame Created 5 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
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_tests', 8 'target_name': 'ppapi_tests',
9 'type': 'loadable_module', 9 'type': 'loadable_module',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 ], 491 ],
492 'include_dirs': [ 492 'include_dirs': [
493 'lib/gl/include', 493 'lib/gl/include',
494 ], 494 ],
495 'sources': [ 495 'sources': [
496 'examples/video_decode/testdata.h', 496 'examples/video_decode/testdata.h',
497 'examples/video_decode/video_decode_dev.cc', 497 'examples/video_decode/video_decode_dev.cc',
498 ], 498 ],
499 }, 499 },
500 { 500 {
501 'target_name': 'ppapi_example_video_encode',
502 'dependencies': [
503 'ppapi_example_skeleton',
504 'ppapi.gyp:ppapi_cpp',
505 ],
506 'sources': [
507 'examples/video_encode/video_encode.cc',
508 ],
509 },
510 {
501 # GN version: //ppapi/example/video_capture 511 # GN version: //ppapi/example/video_capture
502 'target_name': 'ppapi_example_vc', 512 'target_name': 'ppapi_example_vc',
503 'dependencies': [ 513 'dependencies': [
504 'ppapi_example_skeleton', 514 'ppapi_example_skeleton',
505 'ppapi.gyp:ppapi_cpp', 515 'ppapi.gyp:ppapi_cpp',
506 'ppapi.gyp:ppapi_gles2', 516 'ppapi.gyp:ppapi_gles2',
507 ], 517 ],
508 'include_dirs': [ 518 'include_dirs': [
509 'lib/gl/include', 519 'lib/gl/include',
510 ], 520 ],
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 'sources': [ 623 'sources': [
614 'examples/compositor/compositor.cc', 624 'examples/compositor/compositor.cc',
615 'examples/compositor/spinning_cube.cc', 625 'examples/compositor/spinning_cube.cc',
616 'examples/compositor/spinning_cube.h', 626 'examples/compositor/spinning_cube.h',
617 ], 627 ],
618 }, 628 },
619 # Adding a new PPAPI example? Don't forget to update the GN build. 629 # Adding a new PPAPI example? Don't forget to update the GN build.
620 # See //ppapi/examples/BUILD.gn 630 # See //ppapi/examples/BUILD.gn
621 ], 631 ],
622 } 632 }
OLDNEW
« ppapi/examples/video_encode/video_encode.cc ('K') | « ppapi/examples/video_encode/video_encode.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698