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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 'target_name': 'ppapi_example_post_message', | 344 'target_name': 'ppapi_example_post_message', |
345 'dependencies': [ | 345 'dependencies': [ |
346 'ppapi_example_skeleton', | 346 'ppapi_example_skeleton', |
347 'ppapi.gyp:ppapi_cpp', | 347 'ppapi.gyp:ppapi_cpp', |
348 ], | 348 ], |
349 'sources': [ | 349 'sources': [ |
350 'examples/scripting/post_message.cc', | 350 'examples/scripting/post_message.cc', |
351 ], | 351 ], |
352 }, | 352 }, |
353 { | 353 { |
| 354 'target_name': 'ppapi_example_scaling', |
| 355 'dependencies': [ |
| 356 'ppapi_example_skeleton', |
| 357 'ppapi.gyp:ppapi_cpp', |
| 358 ], |
| 359 'sources': [ |
| 360 'examples/scaling/scaling.cc', |
| 361 ], |
| 362 }, |
| 363 { |
354 'target_name': 'ppapi_example_scroll', | 364 'target_name': 'ppapi_example_scroll', |
355 'dependencies': [ | 365 'dependencies': [ |
356 'ppapi_example_skeleton', | 366 'ppapi_example_skeleton', |
357 'ppapi.gyp:ppapi_cpp', | 367 'ppapi.gyp:ppapi_cpp', |
358 ], | 368 ], |
359 'sources': [ | 369 'sources': [ |
360 'examples/2d/scroll.cc', | 370 'examples/2d/scroll.cc', |
361 ], | 371 ], |
362 }, | 372 }, |
363 { | 373 { |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 'ppapi.gyp:ppapi_cpp', | 475 'ppapi.gyp:ppapi_cpp', |
466 ], | 476 ], |
467 'sources': [ | 477 'sources': [ |
468 'examples/printing/printing.cc', | 478 'examples/printing/printing.cc', |
469 ], | 479 ], |
470 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 480 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
471 'msvs_disabled_warnings': [ 4267, ], | 481 'msvs_disabled_warnings': [ 4267, ], |
472 }, | 482 }, |
473 ], | 483 ], |
474 } | 484 } |
OLD | NEW |