Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1769)

Unified Diff: webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp

Issue 269087: Add a skeleton "Pepper" NPAPI plugin. This is basically a copy of the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/tools/pepper_test_plugin/main.cpp ('k') | webkit/tools/pepper_test_plugin/pepper_test_plugin.rc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp
===================================================================
--- webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp (revision 0)
+++ webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp (revision 0)
@@ -0,0 +1,33 @@
+
+{
+ 'targets': [
+ {
+ 'target_name': 'pepper_test_plugin',
+ 'type': 'shared_library',
+ 'dependencies': [
+ '../../../third_party/npapi/npapi.gyp:npapi',
+ ],
+ 'include_dirs': [
+ '../../..', # Root of Chrome Checkout
+ ],
+ 'conditions': [
+ ['OS=="win"', {
+ 'product_name': 'pepper_test_plugin',
+ 'msvs_guid': 'EE00E36E-9E8C-4DFB-925E-FBE32CEDB91A',
+ 'msvs_settings': {
+ },
+ 'sources': [
+ 'pepper_test_plugin.rc',
+ ],
+ }]
+ ],
+ 'sources': [
+ 'main.cpp',
+ 'PluginObject.cpp',
+ 'PluginObject.h',
+ 'TestObject.cpp',
+ 'TestObject.h',
+ ],
+ }
+ ],
+}
« no previous file with comments | « webkit/tools/pepper_test_plugin/main.cpp ('k') | webkit/tools/pepper_test_plugin/pepper_test_plugin.rc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698