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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 'ppapi_example_skeleton', | 517 'ppapi_example_skeleton', |
518 'ppapi.gyp:ppapi_cpp', | 518 'ppapi.gyp:ppapi_cpp', |
519 ], | 519 ], |
520 'sources': [ | 520 'sources': [ |
521 'examples/printing/printing.cc', | 521 'examples/printing/printing.cc', |
522 ], | 522 ], |
523 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 523 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
524 'msvs_disabled_warnings': [ 4267, ], | 524 'msvs_disabled_warnings': [ 4267, ], |
525 }, | 525 }, |
526 { | 526 { |
| 527 'target_name': 'ppapi_example_media_stream_audio', |
| 528 'dependencies': [ |
| 529 'ppapi_example_skeleton', |
| 530 'ppapi.gyp:ppapi_cpp', |
| 531 ], |
| 532 'sources': [ |
| 533 'examples/media_stream_audio/media_stream_audio.cc', |
| 534 ], |
| 535 }, |
| 536 { |
527 'target_name': 'ppapi_example_media_stream_video', | 537 'target_name': 'ppapi_example_media_stream_video', |
528 'dependencies': [ | 538 'dependencies': [ |
529 'ppapi_example_skeleton', | 539 'ppapi_example_skeleton', |
530 'ppapi.gyp:ppapi_cpp', | 540 'ppapi.gyp:ppapi_cpp', |
531 'ppapi.gyp:ppapi_gles2', | 541 'ppapi.gyp:ppapi_gles2', |
532 ], | 542 ], |
533 'include_dirs': [ | 543 'include_dirs': [ |
534 'lib/gl/include', | 544 'lib/gl/include', |
535 ], | 545 ], |
536 'sources': [ | 546 'sources': [ |
537 'examples/media_stream_video/media_stream_video.cc', | 547 'examples/media_stream_video/media_stream_video.cc', |
538 ], | 548 ], |
539 }, | 549 }, |
540 ], | 550 ], |
541 } | 551 } |
OLD | NEW |