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