| 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 'ppapi.gyp:ppapi_gles2', | 389 'ppapi.gyp:ppapi_gles2', |
| 390 'ppapi.gyp:ppapi_egl', | 390 'ppapi.gyp:ppapi_egl', |
| 391 ], | 391 ], |
| 392 'include_dirs': [ | 392 'include_dirs': [ |
| 393 'lib/gl/include', | 393 'lib/gl/include', |
| 394 ], | 394 ], |
| 395 'sources': [ | 395 'sources': [ |
| 396 'examples/video_capture/video_capture.cc', | 396 'examples/video_capture/video_capture.cc', |
| 397 ], | 397 ], |
| 398 }, | 398 }, |
| 399 { |
| 400 'target_name': 'ppapi_example_flash_topmost', |
| 401 'dependencies': [ |
| 402 'ppapi_example_skeleton', |
| 403 'ppapi.gyp:ppapi_cpp', |
| 404 ], |
| 405 'sources': [ |
| 406 'examples/flash_topmost/flash_topmost.cc', |
| 407 ], |
| 408 }, |
| 399 ], | 409 ], |
| 400 } | 410 } |
| OLD | NEW |