| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'sources': [ | 66 'sources': [ |
| 67 '<@(test_sources_common)', | 67 '<@(test_common_source_files)', |
| 68 '<@(test_sources_trusted)', | 68 '<@(test_trusted_source_files)', |
| 69 ], | 69 ], |
| 70 'dependencies': [ | 70 'dependencies': [ |
| 71 'ppapi.gyp:ppapi_cpp', | 71 'ppapi.gyp:ppapi_cpp', |
| 72 'ppapi_internal.gyp:ppapi_shared', | 72 'ppapi_internal.gyp:ppapi_shared', |
| 73 ], | 73 ], |
| 74 'run_as': { | 74 'run_as': { |
| 75 'action': [ | 75 'action': [ |
| 76 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', | 76 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', |
| 77 '--enable-pepper-testing', | 77 '--enable-pepper-testing', |
| 78 '--enable-accelerated-plugins', | 78 '--enable-accelerated-plugins', |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 ], | 343 ], |
| 344 'include_dirs': [ | 344 'include_dirs': [ |
| 345 'lib/gl/include', | 345 'lib/gl/include', |
| 346 ], | 346 ], |
| 347 'sources': [ | 347 'sources': [ |
| 348 'examples/video_capture/video_capture.cc', | 348 'examples/video_capture/video_capture.cc', |
| 349 ], | 349 ], |
| 350 }, | 350 }, |
| 351 ], | 351 ], |
| 352 } | 352 } |
| OLD | NEW |