| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 'target_name': 'ppapi_example_cc_stub', | 264 'target_name': 'ppapi_example_cc_stub', |
| 265 'dependencies': [ | 265 'dependencies': [ |
| 266 'ppapi_example_skeleton', | 266 'ppapi_example_skeleton', |
| 267 'ppapi.gyp:ppapi_cpp', | 267 'ppapi.gyp:ppapi_cpp', |
| 268 ], | 268 ], |
| 269 'sources': [ | 269 'sources': [ |
| 270 'examples/stub/stub.cc', | 270 'examples/stub/stub.cc', |
| 271 ], | 271 ], |
| 272 }, | 272 }, |
| 273 { | 273 { |
| 274 'target_name': 'ppapi_example_crxfs', |
| 275 'dependencies': [ |
| 276 'ppapi_example_skeleton', |
| 277 'ppapi.gyp:ppapi_cpp', |
| 278 ], |
| 279 'sources': [ |
| 280 'examples/crxfs/crxfs.cc', |
| 281 ], |
| 282 }, |
| 283 { |
| 274 'target_name': 'ppapi_example_audio', | 284 'target_name': 'ppapi_example_audio', |
| 275 'dependencies': [ | 285 'dependencies': [ |
| 276 'ppapi_example_skeleton', | 286 'ppapi_example_skeleton', |
| 277 'ppapi.gyp:ppapi_cpp', | 287 'ppapi.gyp:ppapi_cpp', |
| 278 ], | 288 ], |
| 279 'sources': [ | 289 'sources': [ |
| 280 'examples/audio/audio.cc', | 290 'examples/audio/audio.cc', |
| 281 ], | 291 ], |
| 282 }, | 292 }, |
| 283 { | 293 { |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 'ppapi.gyp:ppapi_cpp', | 487 'ppapi.gyp:ppapi_cpp', |
| 478 ], | 488 ], |
| 479 'sources': [ | 489 'sources': [ |
| 480 'examples/printing/printing.cc', | 490 'examples/printing/printing.cc', |
| 481 ], | 491 ], |
| 482 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 492 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 483 'msvs_disabled_warnings': [ 4267, ], | 493 'msvs_disabled_warnings': [ 4267, ], |
| 484 }, | 494 }, |
| 485 ], | 495 ], |
| 486 } | 496 } |
| OLD | NEW |