diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-04 02:00:56 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-04 02:00:56 +0000 |
commit | a5da6d613f41ecf35c027e8744dd6d3a41e4010c (patch) | |
tree | dad6a3e159fcc21df62180f481a0024db97d5b0d /webkit/webkit.gyp | |
parent | e23ed5427d0892d07480781f45b4367adebc0c00 (diff) | |
download | chromium_src-a5da6d613f41ecf35c027e8744dd6d3a41e4010c.zip chromium_src-a5da6d613f41ecf35c027e8744dd6d3a41e4010c.tar.gz chromium_src-a5da6d613f41ecf35c027e8744dd6d3a41e4010c.tar.bz2 |
Cross-process Message Port implementation.
I'm sending this first, then I'll add support to workers in another changelist to avoid making this change larger.
TEST=running message port related layout tests in ui_tests
Review URL: http://codereview.chromium.org/159372
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22356 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/webkit.gyp')
-rw-r--r-- | webkit/webkit.gyp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/webkit/webkit.gyp b/webkit/webkit.gyp index 85505ae..17531ce 100644 --- a/webkit/webkit.gyp +++ b/webkit/webkit.gyp @@ -706,6 +706,10 @@ '../third_party/WebKit/WebCore/platform/graphics/RenderLayerBacking.cpp', '../third_party/WebKit/WebCore/platform/graphics/RenderLayerCompositor.cpp', + # We use a multi-process version from the WebKit API. + '../third_party/WebKit/WebCore/dom/default/PlatformMessagePortChannel.cpp', + '../third_party/WebKit/WebCore/dom/default/PlatformMessagePortChannel.h', + ], 'direct_dependent_settings': { 'include_dirs': [ @@ -997,6 +1001,8 @@ 'api/public/WebLocalizedString.h', 'api/public/WebMediaPlayer.h', 'api/public/WebMediaPlayerClient.h', + 'api/public/WebMessagePortChannel.h', + 'api/public/WebMessagePortChannelClient.h', 'api/public/WebMimeRegistry.h', 'api/public/WebNavigationType.h', 'api/public/WebNode.h', @@ -1022,6 +1028,8 @@ 'api/public/WebVector.h', 'api/public/WebWidget.h', 'api/public/WebWidgetClient.h', + 'api/public/WebWorker.h', + 'api/public/WebWorkerClient.h', 'api/public/win/WebInputEventFactory.h', 'api/public/win/WebSandboxSupport.h', 'api/public/win/WebScreenInfoFactory.h', @@ -1038,6 +1046,8 @@ 'api/src/mac/WebScreenInfoFactory.mm', 'api/src/LocalizedStrings.cpp', 'api/src/MediaPlayerPrivateChromium.cpp', + 'api/src/PlatformMessagePortChannel.cpp', + 'api/src/PlatformMessagePortChannel.h', 'api/src/ResourceHandle.cpp', 'api/src/StorageAreaProxy.cpp', 'api/src/StorageAreaProxy.h', |