| 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 ], | 495 ], |
| 496 'include_dirs': [ | 496 'include_dirs': [ |
| 497 'lib/gl/include', | 497 'lib/gl/include', |
| 498 ], | 498 ], |
| 499 'sources': [ | 499 'sources': [ |
| 500 'examples/video_decode/testdata.h', | 500 'examples/video_decode/testdata.h', |
| 501 'examples/video_decode/video_decode_dev.cc', | 501 'examples/video_decode/video_decode_dev.cc', |
| 502 ], | 502 ], |
| 503 }, | 503 }, |
| 504 { | 504 { |
| 505 'target_name': 'ppapi_example_video_encode', |
| 506 'dependencies': [ |
| 507 'ppapi_example_skeleton', |
| 508 'ppapi.gyp:ppapi_cpp', |
| 509 ], |
| 510 'sources': [ |
| 511 'examples/video_encode/video_encode.cc', |
| 512 ], |
| 513 }, |
| 514 { |
| 505 # GN version: //ppapi/example/video_capture | 515 # GN version: //ppapi/example/video_capture |
| 506 'target_name': 'ppapi_example_vc', | 516 'target_name': 'ppapi_example_vc', |
| 507 'dependencies': [ | 517 'dependencies': [ |
| 508 'ppapi_example_skeleton', | 518 'ppapi_example_skeleton', |
| 509 'ppapi.gyp:ppapi_cpp', | 519 'ppapi.gyp:ppapi_cpp', |
| 510 'ppapi.gyp:ppapi_gles2', | 520 'ppapi.gyp:ppapi_gles2', |
| 511 ], | 521 ], |
| 512 'include_dirs': [ | 522 'include_dirs': [ |
| 513 'lib/gl/include', | 523 'lib/gl/include', |
| 514 ], | 524 ], |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 'sources': [ | 627 'sources': [ |
| 618 'examples/compositor/compositor.cc', | 628 'examples/compositor/compositor.cc', |
| 619 'examples/compositor/spinning_cube.cc', | 629 'examples/compositor/spinning_cube.cc', |
| 620 'examples/compositor/spinning_cube.h', | 630 'examples/compositor/spinning_cube.h', |
| 621 ], | 631 ], |
| 622 }, | 632 }, |
| 623 # Adding a new PPAPI example? Don't forget to update the GN build. | 633 # Adding a new PPAPI example? Don't forget to update the GN build. |
| 624 # See //ppapi/examples/BUILD.gn | 634 # See //ppapi/examples/BUILD.gn |
| 625 ], | 635 ], |
| 626 } | 636 } |
| OLD | NEW |