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