| 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', |
| 11 ], | 11 ], |
| 12 'include_dirs': [ | 12 'include_dirs': [ |
| 13 '../../..', # Root of Chrome Checkout | 13 '../../..', # Root of Chrome Checkout |
| 14 ], | 14 ], |
| 15 'defines': [ |
| 16 'PEPPER_APIS_ENABLED', |
| 17 ], |
| 15 'conditions': [ | 18 'conditions': [ |
| 16 ['OS=="win"', { | 19 ['OS=="win"', { |
| 17 'product_name': 'pepper_test_plugin', | 20 'product_name': 'pepper_test_plugin', |
| 18 'msvs_guid': 'EE00E36E-9E8C-4DFB-925E-FBE32CEDB91A', | 21 'msvs_guid': 'EE00E36E-9E8C-4DFB-925E-FBE32CEDB91A', |
| 19 'sources': [ | 22 'sources': [ |
| 20 'pepper_test_plugin.def', | 23 'pepper_test_plugin.def', |
| 21 'pepper_test_plugin.rc', | 24 'pepper_test_plugin.rc', |
| 22 ], | 25 ], |
| 23 }] | 26 }] |
| 24 ], | 27 ], |
| (...skipping 11 matching lines...) Expand all Loading... |
| 36 'action': [ | 39 'action': [ |
| 37 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', | 40 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', |
| 38 '--no-sandbox', | 41 '--no-sandbox', |
| 39 '--load-plugin=$(TargetPath)', | 42 '--load-plugin=$(TargetPath)', |
| 40 'file://$(ProjectDir)test_page.html', | 43 'file://$(ProjectDir)test_page.html', |
| 41 ], | 44 ], |
| 42 }, | 45 }, |
| 43 } | 46 } |
| 44 ], | 47 ], |
| 45 } | 48 } |
| OLD | NEW |