summaryrefslogtreecommitdiffstats
path: root/content/content_ppapi_plugin.gypi
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-10 21:17:48 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-10 21:17:48 +0000
commit7a1f7c6f6c982287b3f6bb2acded619f3824416c (patch)
tree82ff404c4bcf84520c21ea7f0526ad5a40661641 /content/content_ppapi_plugin.gypi
parentbafaee12825a06890f114a282880e135a8b0b1ae (diff)
downloadchromium_src-7a1f7c6f6c982287b3f6bb2acded619f3824416c.zip
chromium_src-7a1f7c6f6c982287b3f6bb2acded619f3824416c.tar.gz
chromium_src-7a1f7c6f6c982287b3f6bb2acded619f3824416c.tar.bz2
Make the Pepper proxy support in-process font rendering.
This implements a WebKit thread in the PPAPI plugin process so we can do the font calls without IPC. The existing font support was refactored into a virtual class (to prevent PPAPI from depending on WebKit and creating a circular GYP dependency). This moves the renderer sandbox support into content/common so that it can be used by the PPAPI process. Review URL: http://codereview.chromium.org/6981001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_ppapi_plugin.gypi')
-rw-r--r--content/content_ppapi_plugin.gypi6
1 files changed, 5 insertions, 1 deletions
diff --git a/content/content_ppapi_plugin.gypi b/content/content_ppapi_plugin.gypi
index e62050b..6dc13d3 100644
--- a/content/content_ppapi_plugin.gypi
+++ b/content/content_ppapi_plugin.gypi
@@ -9,7 +9,7 @@
'type': '<(library)',
'dependencies': [
'../base/base.gyp:base',
- '../ppapi/ppapi.gyp:ppapi_proxy',
+ '../ppapi/ppapi_internal.gyp:ppapi_proxy',
],
'sources': [
'ppapi_plugin/broker_process_dispatcher.cc',
@@ -20,6 +20,10 @@
'ppapi_plugin/ppapi_plugin_main.cc',
'ppapi_plugin/ppapi_thread.cc',
'ppapi_plugin/ppapi_thread.h',
+ 'ppapi_plugin/ppapi_webkit_thread.cc',
+ 'ppapi_plugin/ppapi_webkit_thread.h',
+ 'ppapi_plugin/ppapi_webkitclient_impl.cc',
+ 'ppapi_plugin/ppapi_webkitclient_impl.h',
],
'include_dirs': [
'..',