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