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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 'target_name': 'ppapi_example_audio', | 324 'target_name': 'ppapi_example_audio', |
325 'dependencies': [ | 325 'dependencies': [ |
326 'ppapi_example_skeleton', | 326 'ppapi_example_skeleton', |
327 'ppapi.gyp:ppapi_cpp', | 327 'ppapi.gyp:ppapi_cpp', |
328 ], | 328 ], |
329 'sources': [ | 329 'sources': [ |
330 'examples/audio/audio.cc', | 330 'examples/audio/audio.cc', |
331 ], | 331 ], |
332 }, | 332 }, |
333 { | 333 { |
| 334 'target_name': 'ppapi_example_audio_encode', |
| 335 'dependencies': [ |
| 336 'ppapi_example_skeleton', |
| 337 'ppapi.gyp:ppapi_cpp', |
| 338 ], |
| 339 'sources': [ |
| 340 'examples/audio_encode/audio_encode.cc', |
| 341 ], |
| 342 }, |
| 343 { |
334 # GN version: //ppapi/examples/audio_input | 344 # GN version: //ppapi/examples/audio_input |
335 'target_name': 'ppapi_example_audio_input', | 345 'target_name': 'ppapi_example_audio_input', |
336 'dependencies': [ | 346 'dependencies': [ |
337 'ppapi_example_skeleton', | 347 'ppapi_example_skeleton', |
338 'ppapi.gyp:ppapi_cpp', | 348 'ppapi.gyp:ppapi_cpp', |
339 ], | 349 ], |
340 'sources': [ | 350 'sources': [ |
341 'examples/audio_input/audio_input.cc', | 351 'examples/audio_input/audio_input.cc', |
342 ], | 352 ], |
343 }, | 353 }, |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 'sources': [ | 656 'sources': [ |
647 'examples/compositor/compositor.cc', | 657 'examples/compositor/compositor.cc', |
648 'examples/compositor/spinning_cube.cc', | 658 'examples/compositor/spinning_cube.cc', |
649 'examples/compositor/spinning_cube.h', | 659 'examples/compositor/spinning_cube.h', |
650 ], | 660 ], |
651 }, | 661 }, |
652 # Adding a new PPAPI example? Don't forget to update the GN build. | 662 # Adding a new PPAPI example? Don't forget to update the GN build. |
653 # See //ppapi/examples/BUILD.gn | 663 # See //ppapi/examples/BUILD.gn |
654 ], | 664 ], |
655 } | 665 } |
OLD | NEW |