| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 'target_name': 'ppapi_example_graphics_2d', | 305 'target_name': 'ppapi_example_graphics_2d', |
| 306 'dependencies': [ | 306 'dependencies': [ |
| 307 'ppapi_example_skeleton', | 307 'ppapi_example_skeleton', |
| 308 'ppapi.gyp:ppapi_c', | 308 'ppapi.gyp:ppapi_c', |
| 309 ], | 309 ], |
| 310 'sources': [ | 310 'sources': [ |
| 311 'examples/2d/graphics_2d_example.c', | 311 'examples/2d/graphics_2d_example.c', |
| 312 ], | 312 ], |
| 313 }, | 313 }, |
| 314 { | 314 { |
| 315 'target_name': 'ppapi_example_ime', |
| 316 'dependencies': [ |
| 317 'ppapi_example_skeleton', |
| 318 'ppapi.gyp:ppapi_cpp', |
| 319 ], |
| 320 'sources': [ |
| 321 'examples/ime/ime.cc', |
| 322 ], |
| 323 }, |
| 324 { |
| 315 'target_name': 'ppapi_example_paint_manager', | 325 'target_name': 'ppapi_example_paint_manager', |
| 316 'dependencies': [ | 326 'dependencies': [ |
| 317 'ppapi_example_skeleton', | 327 'ppapi_example_skeleton', |
| 318 'ppapi.gyp:ppapi_cpp', | 328 'ppapi.gyp:ppapi_cpp', |
| 319 ], | 329 ], |
| 320 'sources': [ | 330 'sources': [ |
| 321 'examples/2d/paint_manager_example.cc', | 331 'examples/2d/paint_manager_example.cc', |
| 322 ], | 332 ], |
| 323 }, | 333 }, |
| 324 { | 334 { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 'lib/gl/include', | 399 'lib/gl/include', |
| 390 ], | 400 ], |
| 391 'sources': [ | 401 'sources': [ |
| 392 'examples/video_capture/video_capture.cc', | 402 'examples/video_capture/video_capture.cc', |
| 393 ], | 403 ], |
| 394 }, | 404 }, |
| 395 ], | 405 ], |
| 396 }] | 406 }] |
| 397 ] | 407 ] |
| 398 } | 408 } |
| OLD | NEW |