| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 # 'type' : 'executable', | 53 # 'type' : 'executable', |
| 54 # 'xcode_settings' : { | 54 # 'xcode_settings' : { |
| 55 # 'ARGUMENTS' : '--renderer-startup-dialog --internal-pepper --no-san
dbox file://${SRCROOT}/test_page.html' | 55 # 'ARGUMENTS' : '--renderer-startup-dialog --internal-pepper --no-san
dbox file://${SRCROOT}/test_page.html' |
| 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': [ |
| 64 'lib/gl/include', |
| 65 ], |
| 63 'sources': [ | 66 'sources': [ |
| 64 # Common test files. | 67 # Common test files. |
| 65 'tests/test_case.cc', | 68 'tests/test_case.cc', |
| 66 'tests/test_case.h', | 69 'tests/test_case.h', |
| 67 'tests/testing_instance.cc', | 70 'tests/testing_instance.cc', |
| 68 'tests/testing_instance.h', | 71 'tests/testing_instance.h', |
| 69 | 72 |
| 70 # Test cases. | 73 # Test cases. |
| 71 'tests/all_c_includes.h', | 74 'tests/all_c_includes.h', |
| 72 'tests/all_cpp_includes.h', | 75 'tests/all_cpp_includes.h', |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 ], | 359 ], |
| 357 'sources': [ | 360 'sources': [ |
| 358 'examples/gles2/gles2.cc', | 361 'examples/gles2/gles2.cc', |
| 359 'examples/gles2/testdata.h', | 362 'examples/gles2/testdata.h', |
| 360 ], | 363 ], |
| 361 }, | 364 }, |
| 362 ], | 365 ], |
| 363 }] | 366 }] |
| 364 ] | 367 ] |
| 365 } | 368 } |
| OLD | NEW |