OLD | NEW |
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 # GN version: //ppapi:ppapi_tests | 8 # GN version: //ppapi:ppapi_tests |
9 'target_name': 'ppapi_tests', | 9 'target_name': 'ppapi_tests', |
10 'type': 'loadable_module', | 10 'type': 'loadable_module', |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 'target_name': 'ppapi_example_audio', | 344 'target_name': 'ppapi_example_audio', |
345 'dependencies': [ | 345 'dependencies': [ |
346 'ppapi_example_skeleton', | 346 'ppapi_example_skeleton', |
347 'ppapi.gyp:ppapi_cpp', | 347 'ppapi.gyp:ppapi_cpp', |
348 ], | 348 ], |
349 'sources': [ | 349 'sources': [ |
350 'examples/audio/audio.cc', | 350 'examples/audio/audio.cc', |
351 ], | 351 ], |
352 }, | 352 }, |
353 { | 353 { |
| 354 'target_name': 'ppapi_example_audio_encode', |
| 355 'dependencies': [ |
| 356 'ppapi_example_skeleton', |
| 357 'ppapi.gyp:ppapi_cpp', |
| 358 ], |
| 359 'sources': [ |
| 360 'examples/audio_encode/audio_encode.cc', |
| 361 ], |
| 362 }, |
| 363 { |
354 # GN version: //ppapi/examples/audio_input | 364 # GN version: //ppapi/examples/audio_input |
355 'target_name': 'ppapi_example_audio_input', | 365 'target_name': 'ppapi_example_audio_input', |
356 'dependencies': [ | 366 'dependencies': [ |
357 'ppapi_example_skeleton', | 367 'ppapi_example_skeleton', |
358 'ppapi.gyp:ppapi_cpp', | 368 'ppapi.gyp:ppapi_cpp', |
359 ], | 369 ], |
360 'sources': [ | 370 'sources': [ |
361 'examples/audio_input/audio_input.cc', | 371 'examples/audio_input/audio_input.cc', |
362 ], | 372 ], |
363 }, | 373 }, |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
666 'sources': [ | 676 'sources': [ |
667 'examples/compositor/compositor.cc', | 677 'examples/compositor/compositor.cc', |
668 'examples/compositor/spinning_cube.cc', | 678 'examples/compositor/spinning_cube.cc', |
669 'examples/compositor/spinning_cube.h', | 679 'examples/compositor/spinning_cube.h', |
670 ], | 680 ], |
671 }, | 681 }, |
672 # Adding a new PPAPI example? Don't forget to update the GN build. | 682 # Adding a new PPAPI example? Don't forget to update the GN build. |
673 # See //ppapi/examples/BUILD.gn | 683 # See //ppapi/examples/BUILD.gn |
674 ], | 684 ], |
675 } | 685 } |
OLD | NEW |