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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 ], | 564 ], |
565 'include_dirs': [ | 565 'include_dirs': [ |
566 'lib/gl/include', | 566 'lib/gl/include', |
567 ], | 567 ], |
568 'sources': [ | 568 'sources': [ |
569 'examples/gles2_spinning_cube/gles2_spinning_cube.cc', | 569 'examples/gles2_spinning_cube/gles2_spinning_cube.cc', |
570 'examples/gles2_spinning_cube/spinning_cube.cc', | 570 'examples/gles2_spinning_cube/spinning_cube.cc', |
571 'examples/gles2_spinning_cube/spinning_cube.h', | 571 'examples/gles2_spinning_cube/spinning_cube.h', |
572 ], | 572 ], |
573 }, | 573 }, |
| 574 { |
| 575 'target_name': 'ppapi_example_compositor', |
| 576 'dependencies': [ |
| 577 'ppapi_example_skeleton', |
| 578 'ppapi.gyp:ppapi_cpp', |
| 579 'ppapi.gyp:ppapi_gles2', |
| 580 ], |
| 581 'include_dirs': [ |
| 582 'lib/gl/include', |
| 583 ], |
| 584 'sources': [ |
| 585 'examples/compositor/compositor.cc', |
| 586 'examples/compositor/spinning_cube.cc', |
| 587 'examples/compositor/spinning_cube.h', |
| 588 ], |
| 589 }, |
574 ], | 590 ], |
575 } | 591 } |
OLD | NEW |