| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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_example', | 8 'target_name': 'ppapi_example', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 'sources': [ | 311 'sources': [ |
| 312 'examples/font/simple_font.cc', | 312 'examples/font/simple_font.cc', |
| 313 ], | 313 ], |
| 314 }, | 314 }, |
| 315 { | 315 { |
| 316 'target_name': 'ppapi_example_gles2', | 316 'target_name': 'ppapi_example_gles2', |
| 317 'dependencies': [ | 317 'dependencies': [ |
| 318 'ppapi_example_skeleton', | 318 'ppapi_example_skeleton', |
| 319 'ppapi.gyp:ppapi_cpp', | 319 'ppapi.gyp:ppapi_cpp', |
| 320 'ppapi.gyp:ppapi_gles2', | 320 'ppapi.gyp:ppapi_gles2', |
| 321 'lib/gl/gl.gyp:ppapi_egl', | 321 'ppapi.gyp:ppapi_egl', |
| 322 ], | 322 ], |
| 323 'include_dirs': [ | 323 'include_dirs': [ |
| 324 'lib/gl/include', | 324 'lib/gl/include', |
| 325 ], | 325 ], |
| 326 'sources': [ | 326 'sources': [ |
| 327 'examples/gles2/gles2.cc', | 327 'examples/gles2/gles2.cc', |
| 328 'examples/gles2/testdata.h', | 328 'examples/gles2/testdata.h', |
| 329 ], | 329 ], |
| 330 }, | 330 }, |
| 331 ], | 331 ], |
| 332 }] | 332 }] |
| 333 ] | 333 ] |
| 334 } | 334 } |
| OLD | NEW |