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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 'target_name': 'ppapi_example_crxfs', | 295 'target_name': 'ppapi_example_crxfs', |
296 'dependencies': [ | 296 'dependencies': [ |
297 'ppapi_example_skeleton', | 297 'ppapi_example_skeleton', |
298 'ppapi.gyp:ppapi_cpp', | 298 'ppapi.gyp:ppapi_cpp', |
299 ], | 299 ], |
300 'sources': [ | 300 'sources': [ |
301 'examples/crxfs/crxfs.cc', | 301 'examples/crxfs/crxfs.cc', |
302 ], | 302 ], |
303 }, | 303 }, |
304 { | 304 { |
| 305 'target_name': 'ppapi_example_pluginfs', |
| 306 'dependencies': [ |
| 307 'ppapi_example_skeleton', |
| 308 'ppapi.gyp:ppapi_cpp', |
| 309 ], |
| 310 'sources': [ |
| 311 'examples/pluginfs/pluginfs.cc', |
| 312 ], |
| 313 }, |
| 314 { |
305 'target_name': 'ppapi_example_audio', | 315 'target_name': 'ppapi_example_audio', |
306 'dependencies': [ | 316 'dependencies': [ |
307 'ppapi_example_skeleton', | 317 'ppapi_example_skeleton', |
308 'ppapi.gyp:ppapi_cpp', | 318 'ppapi.gyp:ppapi_cpp', |
309 ], | 319 ], |
310 'sources': [ | 320 'sources': [ |
311 'examples/audio/audio.cc', | 321 'examples/audio/audio.cc', |
312 ], | 322 ], |
313 }, | 323 }, |
314 { | 324 { |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 'ppapi.gyp:ppapi_cpp', | 525 'ppapi.gyp:ppapi_cpp', |
516 ], | 526 ], |
517 'sources': [ | 527 'sources': [ |
518 'examples/printing/printing.cc', | 528 'examples/printing/printing.cc', |
519 ], | 529 ], |
520 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 530 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
521 'msvs_disabled_warnings': [ 4267, ], | 531 'msvs_disabled_warnings': [ 4267, ], |
522 }, | 532 }, |
523 ], | 533 ], |
524 } | 534 } |
OLD | NEW |