| 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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 'target_name': 'ppapi_example_input', | 362 'target_name': 'ppapi_example_input', |
| 363 'dependencies': [ | 363 'dependencies': [ |
| 364 'ppapi_example_skeleton', | 364 'ppapi_example_skeleton', |
| 365 'ppapi.gyp:ppapi_cpp', | 365 'ppapi.gyp:ppapi_cpp', |
| 366 ], | 366 ], |
| 367 'sources': [ | 367 'sources': [ |
| 368 'examples/input/pointer_event_input.cc', | 368 'examples/input/pointer_event_input.cc', |
| 369 ], | 369 ], |
| 370 }, | 370 }, |
| 371 { | 371 { |
| 372 'target_name': 'ppapi_example_touch_event_latency_tracing', |
| 373 'dependencies': [ |
| 374 'ppapi_example_skeleton', |
| 375 'ppapi.gyp:ppapi_cpp', |
| 376 ], |
| 377 'sources': [ |
| 378 'examples/input/touch_event_latency_tracing.cc', |
| 379 ], |
| 380 }, |
| 381 { |
| 372 'target_name': 'ppapi_example_post_message', | 382 'target_name': 'ppapi_example_post_message', |
| 373 'dependencies': [ | 383 'dependencies': [ |
| 374 'ppapi_example_skeleton', | 384 'ppapi_example_skeleton', |
| 375 'ppapi.gyp:ppapi_cpp', | 385 'ppapi.gyp:ppapi_cpp', |
| 376 ], | 386 ], |
| 377 'sources': [ | 387 'sources': [ |
| 378 'examples/scripting/post_message.cc', | 388 'examples/scripting/post_message.cc', |
| 379 ], | 389 ], |
| 380 }, | 390 }, |
| 381 { | 391 { |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 'lib/gl/include', | 560 'lib/gl/include', |
| 551 ], | 561 ], |
| 552 'sources': [ | 562 'sources': [ |
| 553 'examples/gles2_spinning_cube/gles2_spinning_cube.cc', | 563 'examples/gles2_spinning_cube/gles2_spinning_cube.cc', |
| 554 'examples/gles2_spinning_cube/spinning_cube.cc', | 564 'examples/gles2_spinning_cube/spinning_cube.cc', |
| 555 'examples/gles2_spinning_cube/spinning_cube.h', | 565 'examples/gles2_spinning_cube/spinning_cube.h', |
| 556 ], | 566 ], |
| 557 }, | 567 }, |
| 558 ], | 568 ], |
| 559 } | 569 } |
| OLD | NEW |