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

Side by Side Diff: webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp

Issue 464074: Enable Pepper support by default, including building the test plugin.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years 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
« no previous file with comments | « webkit/tools/pepper_test_plugin/event_handler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « webkit/tools/pepper_test_plugin/event_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698