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