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