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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 # GN version: //ppapi/examples/2d:scroll | 402 # GN version: //ppapi/examples/2d:scroll |
403 'target_name': 'ppapi_example_scroll', | 403 'target_name': 'ppapi_example_scroll', |
404 'dependencies': [ | 404 'dependencies': [ |
405 'ppapi_example_skeleton', | 405 'ppapi_example_skeleton', |
406 'ppapi.gyp:ppapi_cpp', | 406 'ppapi.gyp:ppapi_cpp', |
407 ], | 407 ], |
408 'sources': [ | 408 'sources': [ |
409 'examples/2d/scroll.cc', | 409 'examples/2d/scroll.cc', |
410 ], | 410 ], |
411 }, | 411 }, |
| 412 { |
| 413 # GN version: //ppapi/examples/filesystem_provider |
| 414 'target_name': 'ppapi_example_filesystem_provider', |
| 415 'dependencies': [ |
| 416 'ppapi_example_skeleton', |
| 417 'ppapi.gyp:ppapi_cpp', |
| 418 ], |
| 419 'sources': [ |
| 420 'examples/filesystem_provider/inode.h', |
| 421 'examples/filesystem_provider/memfilesystem.h', |
| 422 'examples/filesystem_provider/filesystem.cc', |
| 423 'examples/filesystem_provider/inode.cc', |
| 424 'examples/filesystem_provider/memfilesystem.cc', |
| 425 ], |
| 426 |
| 427 }, |
412 { | 428 { |
413 # GN version: //ppapi/examples/font | 429 # GN version: //ppapi/examples/font |
414 'target_name': 'ppapi_example_simple_font', | 430 'target_name': 'ppapi_example_simple_font', |
415 'dependencies': [ | 431 'dependencies': [ |
416 'ppapi_example_skeleton', | 432 'ppapi_example_skeleton', |
417 'ppapi.gyp:ppapi_cpp', | 433 'ppapi.gyp:ppapi_cpp', |
418 ], | 434 ], |
419 'sources': [ | 435 'sources': [ |
420 'examples/font/simple_font.cc', | 436 'examples/font/simple_font.cc', |
421 ], | 437 ], |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 'sources': [ | 642 'sources': [ |
627 'examples/compositor/compositor.cc', | 643 'examples/compositor/compositor.cc', |
628 'examples/compositor/spinning_cube.cc', | 644 'examples/compositor/spinning_cube.cc', |
629 'examples/compositor/spinning_cube.h', | 645 'examples/compositor/spinning_cube.h', |
630 ], | 646 ], |
631 }, | 647 }, |
632 # Adding a new PPAPI example? Don't forget to update the GN build. | 648 # Adding a new PPAPI example? Don't forget to update the GN build. |
633 # See //ppapi/examples/BUILD.gn | 649 # See //ppapi/examples/BUILD.gn |
634 ], | 650 ], |
635 } | 651 } |
OLD | NEW |