| 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_example', | 8 'target_name': 'ppapi_example', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 'target_name': 'ppapi_example_url_loader', | 359 'target_name': 'ppapi_example_url_loader', |
| 360 'dependencies': [ | 360 'dependencies': [ |
| 361 'ppapi_example_skeleton', | 361 'ppapi_example_skeleton', |
| 362 'ppapi.gyp:ppapi_cpp', | 362 'ppapi.gyp:ppapi_cpp', |
| 363 ], | 363 ], |
| 364 'sources': [ | 364 'sources': [ |
| 365 'examples/url_loader/streaming.cc', | 365 'examples/url_loader/streaming.cc', |
| 366 ], | 366 ], |
| 367 }, | 367 }, |
| 368 { | 368 { |
| 369 'target_name': 'ppapi_example_gles2', |
| 370 'dependencies': [ |
| 371 'ppapi_example_skeleton', |
| 372 'ppapi.gyp:ppapi_cpp', |
| 373 'ppapi.gyp:ppapi_gles2', |
| 374 'ppapi.gyp:ppapi_egl', |
| 375 ], |
| 376 'include_dirs': [ |
| 377 'lib/gl/include', |
| 378 ], |
| 379 'sources': [ |
| 380 'examples/gles2/gles2.cc', |
| 381 ], |
| 382 }, |
| 383 { |
| 369 'target_name': 'ppapi_example_video_decode', | 384 'target_name': 'ppapi_example_video_decode', |
| 370 'dependencies': [ | 385 'dependencies': [ |
| 371 'ppapi_example_skeleton', | 386 'ppapi_example_skeleton', |
| 372 'ppapi.gyp:ppapi_cpp', | 387 'ppapi.gyp:ppapi_cpp', |
| 373 'ppapi.gyp:ppapi_gles2', | 388 'ppapi.gyp:ppapi_gles2', |
| 374 'ppapi.gyp:ppapi_egl', | 389 'ppapi.gyp:ppapi_egl', |
| 375 ], | 390 ], |
| 376 'include_dirs': [ | 391 'include_dirs': [ |
| 377 'lib/gl/include', | 392 'lib/gl/include', |
| 378 ], | 393 ], |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 'dependencies': [ | 426 'dependencies': [ |
| 412 'ppapi_example_skeleton', | 427 'ppapi_example_skeleton', |
| 413 'ppapi.gyp:ppapi_cpp', | 428 'ppapi.gyp:ppapi_cpp', |
| 414 ], | 429 ], |
| 415 'sources': [ | 430 'sources': [ |
| 416 'examples/printing/printing.cc', | 431 'examples/printing/printing.cc', |
| 417 ], | 432 ], |
| 418 }, | 433 }, |
| 419 ], | 434 ], |
| 420 } | 435 } |
| OLD | NEW |