summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-07 16:53:06 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-07 16:53:06 +0000
commite0ba93971402fee8e7b7cb1cbd2259a37d338760 (patch)
tree4af1d741d0b1b89f27f4c9225d4df6568ffd6b85 /ppapi/shared_impl
parent8b21080ae97787dfe73068014bce3c9e0343eb36 (diff)
downloadchromium_src-e0ba93971402fee8e7b7cb1cbd2259a37d338760.zip
chromium_src-e0ba93971402fee8e7b7cb1cbd2259a37d338760.tar.gz
chromium_src-e0ba93971402fee8e7b7cb1cbd2259a37d338760.tar.bz2
Make webkit/glue/plugins no longer depend on ppapi/proxy directly. This causes
things that use webkit but otherwise don't need IPC to include the IPC directory. This patch moves the set-up of the proxy into the renderer. I also did a lot of clean-up of the initialization and it seems much nicer now. BUG=63684 TEST=manual PPAPI proxy testing Review URL: http://codereview.chromium.org/5592005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68482 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/shared_impl')
-rw-r--r--ppapi/shared_impl/DEPS5
1 files changed, 5 insertions, 0 deletions
diff --git a/ppapi/shared_impl/DEPS b/ppapi/shared_impl/DEPS
index 84fea55..578728a 100644
--- a/ppapi/shared_impl/DEPS
+++ b/ppapi/shared_impl/DEPS
@@ -1,4 +1,9 @@
include_rules = [
"+base",
+
+ # Since this is used by the implementation in /webkit, we don't want it to
+ # depend on IPC.
+ "-ipc",
+
"-ppapi/cpp",
]