OLD | NEW |
1 | 1 |
2 { | 2 { |
3 'targets': [ | 3 'targets': [ |
4 { | 4 { |
5 'target_name': 'pepper_test_plugin', | 5 'target_name': 'pepper_test_plugin', |
6 'type': 'shared_library', | 6 'type': 'shared_library', |
7 'dependencies': [ | 7 'dependencies': [ |
8 '../../../base/base.gyp:base', | 8 '../../../base/base.gyp:base', |
9 '../../../skia/skia.gyp:skia', | 9 '../../../skia/skia.gyp:skia', |
10 '../../../third_party/npapi/npapi.gyp:npapi', | 10 '../../../third_party/npapi/npapi.gyp:npapi', |
(...skipping 14 matching lines...) Expand all Loading... |
25 ], | 25 ], |
26 }] | 26 }] |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'main.cc', | 29 'main.cc', |
30 'plugin_object.cc', | 30 'plugin_object.cc', |
31 'plugin_object.h', | 31 'plugin_object.h', |
32 'test_object.cc', | 32 'test_object.cc', |
33 'test_object.h', | 33 'test_object.h', |
34 ], | 34 ], |
| 35 'run_as': { |
| 36 'working_directory': '.', |
| 37 'action': [ |
| 38 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', |
| 39 '--no-sandbox', |
| 40 '--load-plugin=$(TargetPath)', |
| 41 'test_page.html', |
| 42 ], |
| 43 }, |
35 } | 44 } |
36 ], | 45 ], |
37 } | 46 } |
OLD | NEW |