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