| 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_tests', | 8 'target_name': 'ppapi_tests', |
| 9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 'target_name': 'ppapi_example_paint_manager', | 295 'target_name': 'ppapi_example_paint_manager', |
| 296 'dependencies': [ | 296 'dependencies': [ |
| 297 'ppapi_example_skeleton', | 297 'ppapi_example_skeleton', |
| 298 'ppapi.gyp:ppapi_cpp', | 298 'ppapi.gyp:ppapi_cpp', |
| 299 ], | 299 ], |
| 300 'sources': [ | 300 'sources': [ |
| 301 'examples/2d/paint_manager_example.cc', | 301 'examples/2d/paint_manager_example.cc', |
| 302 ], | 302 ], |
| 303 }, | 303 }, |
| 304 { | 304 { |
| 305 'target_name': 'ppapi_example_input', |
| 306 'dependencies': [ |
| 307 'ppapi_example_skeleton', |
| 308 'ppapi.gyp:ppapi_cpp', |
| 309 ], |
| 310 'sources': [ |
| 311 'examples/input/pointer_event_input.cc', |
| 312 ], |
| 313 }, |
| 314 { |
| 305 'target_name': 'ppapi_example_post_message', | 315 'target_name': 'ppapi_example_post_message', |
| 306 'dependencies': [ | 316 'dependencies': [ |
| 307 'ppapi_example_skeleton', | 317 'ppapi_example_skeleton', |
| 308 'ppapi.gyp:ppapi_cpp', | 318 'ppapi.gyp:ppapi_cpp', |
| 309 ], | 319 ], |
| 310 'sources': [ | 320 'sources': [ |
| 311 'examples/scripting/post_message.cc', | 321 'examples/scripting/post_message.cc', |
| 312 ], | 322 ], |
| 313 }, | 323 }, |
| 314 { | 324 { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 'dependencies': [ | 412 'dependencies': [ |
| 403 'ppapi_example_skeleton', | 413 'ppapi_example_skeleton', |
| 404 'ppapi.gyp:ppapi_cpp', | 414 'ppapi.gyp:ppapi_cpp', |
| 405 ], | 415 ], |
| 406 'sources': [ | 416 'sources': [ |
| 407 'examples/printing/printing.cc', | 417 'examples/printing/printing.cc', |
| 408 ], | 418 ], |
| 409 }, | 419 }, |
| 410 ], | 420 ], |
| 411 } | 421 } |
| OLD | NEW |