| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 'target_name': 'ppapi_example_graphics_2d', | 292 'target_name': 'ppapi_example_graphics_2d', |
| 293 'dependencies': [ | 293 'dependencies': [ |
| 294 'ppapi_example_skeleton', | 294 'ppapi_example_skeleton', |
| 295 'ppapi.gyp:ppapi_c', | 295 'ppapi.gyp:ppapi_c', |
| 296 ], | 296 ], |
| 297 'sources': [ | 297 'sources': [ |
| 298 'examples/2d/graphics_2d_example.c', | 298 'examples/2d/graphics_2d_example.c', |
| 299 ], | 299 ], |
| 300 }, | 300 }, |
| 301 { | 301 { |
| 302 'target_name': 'ppapi_example_ime', |
| 303 'dependencies': [ |
| 304 'ppapi_example_skeleton', |
| 305 'ppapi.gyp:ppapi_cpp', |
| 306 ], |
| 307 'sources': [ |
| 308 'examples/ime/ime.cc', |
| 309 ], |
| 310 }, |
| 311 { |
| 302 'target_name': 'ppapi_example_paint_manager', | 312 'target_name': 'ppapi_example_paint_manager', |
| 303 'dependencies': [ | 313 'dependencies': [ |
| 304 'ppapi_example_skeleton', | 314 'ppapi_example_skeleton', |
| 305 'ppapi.gyp:ppapi_cpp', | 315 'ppapi.gyp:ppapi_cpp', |
| 306 ], | 316 ], |
| 307 'sources': [ | 317 'sources': [ |
| 308 'examples/2d/paint_manager_example.cc', | 318 'examples/2d/paint_manager_example.cc', |
| 309 ], | 319 ], |
| 310 }, | 320 }, |
| 311 { | 321 { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 ], | 371 ], |
| 362 'sources': [ | 372 'sources': [ |
| 363 'examples/gles2/gles2.cc', | 373 'examples/gles2/gles2.cc', |
| 364 'examples/gles2/testdata.h', | 374 'examples/gles2/testdata.h', |
| 365 ], | 375 ], |
| 366 }, | 376 }, |
| 367 ], | 377 ], |
| 368 }] | 378 }] |
| 369 ] | 379 ] |
| 370 } | 380 } |
| OLD | NEW |