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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 140783004: [PPAPI] Pepper MediaStream API audio track implementation and example. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review issues Created 6 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
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/audio_frame_resource.h » ('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) 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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 'ppapi_example_skeleton', 517 'ppapi_example_skeleton',
518 'ppapi.gyp:ppapi_cpp', 518 'ppapi.gyp:ppapi_cpp',
519 ], 519 ],
520 'sources': [ 520 'sources': [
521 'examples/printing/printing.cc', 521 'examples/printing/printing.cc',
522 ], 522 ],
523 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 523 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
524 'msvs_disabled_warnings': [ 4267, ], 524 'msvs_disabled_warnings': [ 4267, ],
525 }, 525 },
526 { 526 {
527 'target_name': 'ppapi_example_media_stream_audio',
528 'dependencies': [
529 'ppapi_example_skeleton',
530 'ppapi.gyp:ppapi_cpp',
531 ],
532 'sources': [
533 'examples/media_stream_audio/media_stream_audio.cc',
534 ],
535 },
536 {
527 'target_name': 'ppapi_example_media_stream_video', 537 'target_name': 'ppapi_example_media_stream_video',
528 'dependencies': [ 538 'dependencies': [
529 'ppapi_example_skeleton', 539 'ppapi_example_skeleton',
530 'ppapi.gyp:ppapi_cpp', 540 'ppapi.gyp:ppapi_cpp',
531 'ppapi.gyp:ppapi_gles2', 541 'ppapi.gyp:ppapi_gles2',
532 ], 542 ],
533 'include_dirs': [ 543 'include_dirs': [
534 'lib/gl/include', 544 'lib/gl/include',
535 ], 545 ],
536 'sources': [ 546 'sources': [
537 'examples/media_stream_video/media_stream_video.cc', 547 'examples/media_stream_video/media_stream_video.cc',
538 ], 548 ],
539 }, 549 },
540 ], 550 ],
541 } 551 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_proxy.gypi ('k') | ppapi/proxy/audio_frame_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698