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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 8662020: Pepper: Add an example/test plugin for audio input (a.k.a. microphone). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: oops Created 9 years, 1 month 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/audio_input/audio_input.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) 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 '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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 'target_name': 'ppapi_example_audio', 302 'target_name': 'ppapi_example_audio',
303 'dependencies': [ 303 'dependencies': [
304 'ppapi_example_skeleton', 304 'ppapi_example_skeleton',
305 'ppapi.gyp:ppapi_cpp', 305 'ppapi.gyp:ppapi_cpp',
306 ], 306 ],
307 'sources': [ 307 'sources': [
308 'examples/audio/audio.cc', 308 'examples/audio/audio.cc',
309 ], 309 ],
310 }, 310 },
311 { 311 {
312 'target_name': 'ppapi_example_audio_input',
313 'dependencies': [
314 'ppapi_example_skeleton',
315 'ppapi.gyp:ppapi_cpp',
316 ],
317 'sources': [
318 'examples/audio_input/audio_input.cc',
319 ],
320 },
321 {
312 'target_name': 'ppapi_example_file_chooser', 322 'target_name': 'ppapi_example_file_chooser',
313 'dependencies': [ 323 'dependencies': [
314 'ppapi_example_skeleton', 324 'ppapi_example_skeleton',
315 'ppapi.gyp:ppapi_cpp', 325 'ppapi.gyp:ppapi_cpp',
316 ], 326 ],
317 'sources': [ 327 'sources': [
318 'examples/file_chooser/file_chooser.cc', 328 'examples/file_chooser/file_chooser.cc',
319 ], 329 ],
320 }, 330 },
321 { 331 {
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 # Var_deprecated fails in TestPassReference, and we probably won't 516 # Var_deprecated fails in TestPassReference, and we probably won't
507 # fix it. 517 # fix it.
508 #'tests/test_var_deprecated.cc' 518 #'tests/test_var_deprecated.cc'
509 ], 519 ],
510 }, 520 },
511 }, 521 },
512 ], 522 ],
513 }], 523 }],
514 ], 524 ],
515 } 525 }
OLDNEW
« no previous file with comments | « ppapi/examples/audio_input/audio_input.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698