diff options
author | lambroslambrou@chromium.org <lambroslambrou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-03 19:12:01 +0000 |
---|---|---|
committer | lambroslambrou@chromium.org <lambroslambrou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-03 19:12:01 +0000 |
commit | 3f118f750972f1232033243312819b2acee9abab (patch) | |
tree | 847a432d52ac7122723e6e4ec6a7f391db88d56d /remoting/remoting.gyp | |
parent | 73ff7fe36a24d6366706dfae48dfacfe77a7ddd8 (diff) | |
download | chromium_src-3f118f750972f1232033243312819b2acee9abab.zip chromium_src-3f118f750972f1232033243312819b2acee9abab.tar.gz chromium_src-3f118f750972f1232033243312819b2acee9abab.tar.bz2 |
Native Messaging host process for Chromoting Me2Me.
This adds a GYP target to build a Native Messaging host
executable for all platforms that currently support Me2Me
hosts.
BUG=173509
TEST=manual
Review URL: https://chromiumcodereview.appspot.com/12852005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/remoting.gyp')
-rw-r--r-- | remoting/remoting.gyp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp index b9fa5b7..791f1e6 100644 --- a/remoting/remoting.gyp +++ b/remoting/remoting.gyp @@ -711,6 +711,27 @@ ], }, # end of target 'remoting_host_plugin' + { + 'target_name': 'remoting_native_messaging_host', + 'type': 'executable', + 'variables': { 'enable_wexit_time_destructors': 1, }, + 'dependencies': [ + '../base/base.gyp:base', + 'remoting_host', + 'remoting_host_logging', + 'remoting_host_setup_base', + ], + 'defines': [ + 'VERSION=<(version_full)', + ], + 'sources': [ + 'host/setup/native_messaging_host.cc', + 'host/setup/native_messaging_reader.cc', + 'host/setup/native_messaging_reader.h', + 'host/setup/native_messaging_writer.cc', + 'host/setup/native_messaging_writer.h', + ], + }, # end of target 'remoting_native_messaging_host' ], # end of 'targets' }], # 'enable_remoting_host==1' |