OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |