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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 'target_name': 'ppapi_example_url_loader', | 358 'target_name': 'ppapi_example_url_loader', |
359 'dependencies': [ | 359 'dependencies': [ |
360 'ppapi_example_skeleton', | 360 'ppapi_example_skeleton', |
361 'ppapi.gyp:ppapi_cpp', | 361 'ppapi.gyp:ppapi_cpp', |
362 ], | 362 ], |
363 'sources': [ | 363 'sources': [ |
364 'examples/url_loader/streaming.cc', | 364 'examples/url_loader/streaming.cc', |
365 ], | 365 ], |
366 }, | 366 }, |
367 { | 367 { |
| 368 'target_name': 'ppapi_example_url_loader_file', |
| 369 'dependencies': [ |
| 370 'ppapi_example_skeleton', |
| 371 'ppapi.gyp:ppapi_cpp', |
| 372 ], |
| 373 'sources': [ |
| 374 'examples/url_loader/stream_to_file.cc', |
| 375 ], |
| 376 }, |
| 377 { |
368 'target_name': 'ppapi_example_gles2', | 378 'target_name': 'ppapi_example_gles2', |
369 'dependencies': [ | 379 'dependencies': [ |
370 'ppapi_example_skeleton', | 380 'ppapi_example_skeleton', |
371 'ppapi.gyp:ppapi_cpp', | 381 'ppapi.gyp:ppapi_cpp', |
372 'ppapi.gyp:ppapi_gles2', | 382 'ppapi.gyp:ppapi_gles2', |
373 'ppapi.gyp:ppapi_egl', | 383 'ppapi.gyp:ppapi_egl', |
374 ], | 384 ], |
375 'include_dirs': [ | 385 'include_dirs': [ |
376 'lib/gl/include', | 386 'lib/gl/include', |
377 ], | 387 ], |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 'dependencies': [ | 445 'dependencies': [ |
436 'ppapi_example_skeleton', | 446 'ppapi_example_skeleton', |
437 'ppapi.gyp:ppapi_cpp', | 447 'ppapi.gyp:ppapi_cpp', |
438 ], | 448 ], |
439 'sources': [ | 449 'sources': [ |
440 'examples/printing/printing.cc', | 450 'examples/printing/printing.cc', |
441 ], | 451 ], |
442 }, | 452 }, |
443 ], | 453 ], |
444 } | 454 } |
OLD | NEW |