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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 'ppapi.gyp:ppapi_cpp', | 544 'ppapi.gyp:ppapi_cpp', |
545 'ppapi.gyp:ppapi_gles2', | 545 'ppapi.gyp:ppapi_gles2', |
546 ], | 546 ], |
547 'include_dirs': [ | 547 'include_dirs': [ |
548 'lib/gl/include', | 548 'lib/gl/include', |
549 ], | 549 ], |
550 'sources': [ | 550 'sources': [ |
551 'examples/media_stream_video/media_stream_video.cc', | 551 'examples/media_stream_video/media_stream_video.cc', |
552 ], | 552 ], |
553 }, | 553 }, |
| 554 { |
| 555 'target_name': 'ppapi_example_gles2_spinning_cube', |
| 556 'dependencies': [ |
| 557 'ppapi_example_skeleton', |
| 558 'ppapi.gyp:ppapi_cpp', |
| 559 'ppapi.gyp:ppapi_gles2', |
| 560 ], |
| 561 'include_dirs': [ |
| 562 'lib/gl/include', |
| 563 ], |
| 564 'sources': [ |
| 565 'examples/gles2_spinning_cube/gles2_spinning_cube.cc', |
| 566 'examples/gles2_spinning_cube/spinning_cube.cc', |
| 567 'examples/gles2_spinning_cube/spinning_cube.h', |
| 568 ], |
| 569 }, |
554 ], | 570 ], |
555 } | 571 } |
OLD | NEW |