diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-30 22:35:27 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-30 22:35:27 +0000 |
commit | 73d96dc3c451af3e4347d96471d8bdd02ab02853 (patch) | |
tree | f983e222b916a204bb4928e797b1061ee4185321 /chrome/nacl.gypi | |
parent | c3f757f314b7a473e1b76bd2a3401d5599bebd7d (diff) | |
download | chromium_src-73d96dc3c451af3e4347d96471d8bdd02ab02853.zip chromium_src-73d96dc3c451af3e4347d96471d8bdd02ab02853.tar.gz chromium_src-73d96dc3c451af3e4347d96471d8bdd02ab02853.tar.bz2 |
Initial implementation of an IPC adapter to expose Chrome IPC to Native Client.
This provides an implementation of sendmsg and recvmsg approxinately to what we think NaCl will expose to Chrome. Since NaCl isn't ready yet in this regard, it's still a bit speculative. And there is no support for sending handles across which will be the tricky part.
TEST=included unit test
BUG=none
Review URL: https://chromiumcodereview.appspot.com/9863005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129981 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/nacl.gypi')
-rw-r--r-- | chrome/nacl.gypi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/nacl.gypi b/chrome/nacl.gypi index f34c7bd..c9d2605 100644 --- a/chrome/nacl.gypi +++ b/chrome/nacl.gypi @@ -24,6 +24,10 @@ # .cc, .h, and .mm files under nacl that are used on all # platforms, including both 32-bit and 64-bit Windows. # Test files are also not included. + 'nacl/nacl_ipc_adapter.cc', + 'nacl/nacl_ipc_adapter.h', + 'nacl/nacl_ipc_manager.cc', + 'nacl/nacl_ipc_manager.h', 'nacl/nacl_main.cc', 'nacl/nacl_main_platform_delegate.h', 'nacl/nacl_main_platform_delegate_linux.cc', |