diff options
author | weitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-13 21:47:39 +0000 |
---|---|---|
committer | weitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-13 21:47:39 +0000 |
commit | b301e8f6f8db1cdf203a705ac8effcd9b56117af (patch) | |
tree | a00498289ebffd487c14e2551c3054c16d0993c2 /remoting/remoting_host_win.gypi | |
parent | e3c307972900d802c2bb4b68d2d2f29fc21e94f2 (diff) | |
download | chromium_src-b301e8f6f8db1cdf203a705ac8effcd9b56117af.zip chromium_src-b301e8f6f8db1cdf203a705ac8effcd9b56117af.tar.gz chromium_src-b301e8f6f8db1cdf203a705ac8effcd9b56117af.tar.bz2 |
Enable pairing registry in me2me native messaging host on Windows:
1. Build a standalone remoting_native_messaging_host.exe. remoting_host.exe is a win32 application (as opposed to console application) thus not suitable as a native messaging host.
2. Initialize the pairing registry reg keys in the native messaging host.
3. GetPairdClients doesn't require elevation.
4. Add the native messaging host binary and manifest and the pairing reg keys to the installer.
Enable pairing registry in Me2Me native messaging host on Windows.
BUG=325567
Review URL: https://codereview.chromium.org/143303007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251137 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/remoting_host_win.gypi')
-rw-r--r-- | remoting/remoting_host_win.gypi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/remoting/remoting_host_win.gypi b/remoting/remoting_host_win.gypi index 87b64a6..4e24861 100644 --- a/remoting/remoting_host_win.gypi +++ b/remoting/remoting_host_win.gypi @@ -465,17 +465,20 @@ 'remoting_core', 'remoting_desktop', 'remoting_host_exe', + 'remoting_me2me_native_messaging_host', 'remoting_native_messaging_manifests', ], 'compiled_inputs': [ '<(PRODUCT_DIR)/remoting_core.dll', '<(PRODUCT_DIR)/remoting_desktop.exe', '<(PRODUCT_DIR)/remoting_host.exe', + '<(PRODUCT_DIR)/remoting_native_messaging_host.exe', ], 'compiled_inputs_dst': [ 'files/remoting_core.dll', 'files/remoting_desktop.exe', 'files/remoting_host.exe', + 'files/remoting_native_messaging_host.exe', ], 'conditions': [ ['buildtype == "Official"', { |