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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 'dependencies': [ | 513 'dependencies': [ |
514 'ppapi_example_skeleton', | 514 'ppapi_example_skeleton', |
515 'ppapi.gyp:ppapi_cpp', | 515 'ppapi.gyp:ppapi_cpp', |
516 ], | 516 ], |
517 'sources': [ | 517 'sources': [ |
518 'examples/printing/printing.cc', | 518 'examples/printing/printing.cc', |
519 ], | 519 ], |
520 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 520 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
521 'msvs_disabled_warnings': [ 4267, ], | 521 'msvs_disabled_warnings': [ 4267, ], |
522 }, | 522 }, |
| 523 { |
| 524 'target_name': 'ppapi_example_extensions', |
| 525 'dependencies': [ |
| 526 'ppapi_example_skeleton', |
| 527 'ppapi.gyp:ppapi_cpp', |
| 528 ], |
| 529 'sources': [ |
| 530 'examples/extensions/extensions.cc', |
| 531 ], |
| 532 }, |
523 ], | 533 ], |
524 } | 534 } |
OLD | NEW |