| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 'ppapi.gyp:ppapi_egl', | 404 'ppapi.gyp:ppapi_egl', |
| 405 ], | 405 ], |
| 406 'include_dirs': [ | 406 'include_dirs': [ |
| 407 'lib/gl/include', | 407 'lib/gl/include', |
| 408 ], | 408 ], |
| 409 'sources': [ | 409 'sources': [ |
| 410 'examples/video_capture/video_capture.cc', | 410 'examples/video_capture/video_capture.cc', |
| 411 ], | 411 ], |
| 412 }, | 412 }, |
| 413 { | 413 { |
| 414 'target_name': 'ppapi_example_enumerate_devices', |
| 415 'dependencies': [ |
| 416 'ppapi_example_skeleton', |
| 417 'ppapi.gyp:ppapi_cpp', |
| 418 ], |
| 419 'sources': [ |
| 420 'examples/enumerate_devices/enumerate_devices.cc', |
| 421 ], |
| 422 }, |
| 423 { |
| 414 'target_name': 'ppapi_example_flash_topmost', | 424 'target_name': 'ppapi_example_flash_topmost', |
| 415 'dependencies': [ | 425 'dependencies': [ |
| 416 'ppapi_example_skeleton', | 426 'ppapi_example_skeleton', |
| 417 'ppapi.gyp:ppapi_cpp', | 427 'ppapi.gyp:ppapi_cpp', |
| 418 ], | 428 ], |
| 419 'sources': [ | 429 'sources': [ |
| 420 'examples/flash_topmost/flash_topmost.cc', | 430 'examples/flash_topmost/flash_topmost.cc', |
| 421 ], | 431 ], |
| 422 }, | 432 }, |
| 423 { | 433 { |
| 424 'target_name': 'ppapi_example_printing', | 434 'target_name': 'ppapi_example_printing', |
| 425 'dependencies': [ | 435 'dependencies': [ |
| 426 'ppapi_example_skeleton', | 436 'ppapi_example_skeleton', |
| 427 'ppapi.gyp:ppapi_cpp', | 437 'ppapi.gyp:ppapi_cpp', |
| 428 ], | 438 ], |
| 429 'sources': [ | 439 'sources': [ |
| 430 'examples/printing/printing.cc', | 440 'examples/printing/printing.cc', |
| 431 ], | 441 ], |
| 432 }, | 442 }, |
| 433 ], | 443 ], |
| 434 } | 444 } |
| OLD | NEW |