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 'target_name': 'ppapi_tests', | 8 'target_name': 'ppapi_tests', |
9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 'target_name': 'ppapi_example_video_decode', | 469 'target_name': 'ppapi_example_video_decode', |
470 'dependencies': [ | 470 'dependencies': [ |
471 'ppapi_example_skeleton', | 471 'ppapi_example_skeleton', |
472 'ppapi.gyp:ppapi_cpp', | 472 'ppapi.gyp:ppapi_cpp', |
473 'ppapi.gyp:ppapi_gles2', | 473 'ppapi.gyp:ppapi_gles2', |
474 ], | 474 ], |
475 'include_dirs': [ | 475 'include_dirs': [ |
476 'lib/gl/include', | 476 'lib/gl/include', |
477 ], | 477 ], |
478 'sources': [ | 478 'sources': [ |
| 479 'examples/video_decode/testdata.h', |
479 'examples/video_decode/video_decode.cc', | 480 'examples/video_decode/video_decode.cc', |
480 'examples/video_decode/testdata.h', | |
481 ], | 481 ], |
482 }, | 482 }, |
483 { | 483 { |
484 # GN version: //ppapi/examples/video_decode:dev | 484 # GN version: //ppapi/examples/video_decode:dev |
485 'target_name': 'ppapi_example_video_decode_dev', | 485 'target_name': 'ppapi_example_video_decode_dev', |
486 'dependencies': [ | 486 'dependencies': [ |
487 'ppapi_example_skeleton', | 487 'ppapi_example_skeleton', |
488 'ppapi.gyp:ppapi_cpp', | 488 'ppapi.gyp:ppapi_cpp', |
489 'ppapi.gyp:ppapi_gles2', | 489 'ppapi.gyp:ppapi_gles2', |
490 ], | 490 ], |
491 'include_dirs': [ | 491 'include_dirs': [ |
492 'lib/gl/include', | 492 'lib/gl/include', |
493 ], | 493 ], |
494 'sources': [ | 494 'sources': [ |
| 495 'examples/video_decode/testdata.h', |
495 'examples/video_decode/video_decode_dev.cc', | 496 'examples/video_decode/video_decode_dev.cc', |
496 'examples/video_decode/testdata.h', | |
497 ], | 497 ], |
498 }, | 498 }, |
499 { | 499 { |
500 # GN version: //ppapi/example/video_capture | 500 # GN version: //ppapi/example/video_capture |
501 'target_name': 'ppapi_example_vc', | 501 'target_name': 'ppapi_example_vc', |
502 'dependencies': [ | 502 'dependencies': [ |
503 'ppapi_example_skeleton', | 503 'ppapi_example_skeleton', |
504 'ppapi.gyp:ppapi_cpp', | 504 'ppapi.gyp:ppapi_cpp', |
505 'ppapi.gyp:ppapi_gles2', | 505 'ppapi.gyp:ppapi_gles2', |
506 ], | 506 ], |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 'sources': [ | 612 'sources': [ |
613 'examples/compositor/compositor.cc', | 613 'examples/compositor/compositor.cc', |
614 'examples/compositor/spinning_cube.cc', | 614 'examples/compositor/spinning_cube.cc', |
615 'examples/compositor/spinning_cube.h', | 615 'examples/compositor/spinning_cube.h', |
616 ], | 616 ], |
617 }, | 617 }, |
618 # Adding a new PPAPI example? Don't forget to update the GN build. | 618 # Adding a new PPAPI example? Don't forget to update the GN build. |
619 # See //ppapi/examples/BUILD.gn | 619 # See //ppapi/examples/BUILD.gn |
620 ], | 620 ], |
621 } | 621 } |
OLD | NEW |