| 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_example', | 8 'target_name': 'ppapi_example', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 # }, | 56 # }, |
| 57 # }], | 57 # }], |
| 58 #], | 58 #], |
| 59 }, | 59 }, |
| 60 { | 60 { |
| 61 'target_name': 'ppapi_tests', | 61 'target_name': 'ppapi_tests', |
| 62 'type': 'loadable_module', | 62 'type': 'loadable_module', |
| 63 'include_dirs': [ | 63 'include_dirs': [ |
| 64 'lib/gl/include', | 64 'lib/gl/include', |
| 65 ], | 65 ], |
| 66 'defines': [ |
| 67 'GL_GLEXT_PROTOTYPES', |
| 68 ], |
| 66 'sources': [ | 69 'sources': [ |
| 67 '<@(test_common_source_files)', | 70 '<@(test_common_source_files)', |
| 68 '<@(test_trusted_source_files)', | 71 '<@(test_trusted_source_files)', |
| 69 ], | 72 ], |
| 70 'dependencies': [ | 73 'dependencies': [ |
| 71 'ppapi.gyp:ppapi_cpp', | 74 'ppapi.gyp:ppapi_cpp', |
| 72 'ppapi_internal.gyp:ppapi_shared', | 75 'ppapi_internal.gyp:ppapi_shared', |
| 73 ], | 76 ], |
| 74 'run_as': { | 77 'run_as': { |
| 75 'action': [ | 78 'action': [ |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 'dependencies': [ | 433 'dependencies': [ |
| 431 'ppapi_example_skeleton', | 434 'ppapi_example_skeleton', |
| 432 'ppapi.gyp:ppapi_cpp', | 435 'ppapi.gyp:ppapi_cpp', |
| 433 ], | 436 ], |
| 434 'sources': [ | 437 'sources': [ |
| 435 'examples/printing/printing.cc', | 438 'examples/printing/printing.cc', |
| 436 ], | 439 ], |
| 437 }, | 440 }, |
| 438 ], | 441 ], |
| 439 } | 442 } |
| OLD | NEW |