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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 'dependencies': [ | 516 'dependencies': [ |
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 { |
| 527 'target_name': 'ppapi_example_media_stream_video', |
| 528 'dependencies': [ |
| 529 'ppapi_example_skeleton', |
| 530 'ppapi.gyp:ppapi_cpp', |
| 531 'ppapi.gyp:ppapi_gles2', |
| 532 ], |
| 533 'include_dirs': [ |
| 534 'lib/gl/include', |
| 535 ], |
| 536 'sources': [ |
| 537 'examples/media_stream_video/media_stream_video.cc', |
| 538 ], |
| 539 }, |
526 ], | 540 ], |
527 } | 541 } |
OLD | NEW |