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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 {
3 'targets': [
4 {
5 'target_name': 'pepper_test_plugin',
6 'type': 'shared_library',
7 'dependencies': [
8 '../../../third_party/npapi/npapi.gyp:npapi',
9 ],
10 'include_dirs': [
11 '../../..', # Root of Chrome Checkout
12 ],
13 'conditions': [
14 ['OS=="win"', {
15 'product_name': 'pepper_test_plugin',
16 'msvs_guid': 'EE00E36E-9E8C-4DFB-925E-FBE32CEDB91A',
17 'msvs_settings': {
18 },
19 'sources': [
20 'pepper_test_plugin.rc',
21 ],
22 }]
23 ],
24 'sources': [
25 'main.cpp',
26 'PluginObject.cpp',
27 'PluginObject.h',
28 'TestObject.cpp',
29 'TestObject.h',
30 ],
31 }
32 ],
33 }
OLDNEW
« 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