diff options
author | sergeyu <sergeyu@chromium.org> | 2014-09-10 13:19:40 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-10 20:29:38 +0000 |
commit | 67945b28c51b5d550ad7ea87a798a409b373346b (patch) | |
tree | 7beae6f892ee93e8f535d416390bf67989f74c06 /remoting/remoting_host.gypi | |
parent | 82f0d05dc80c22754f2976d63813dfc6dabdd67c (diff) | |
download | chromium_src-67945b28c51b5d550ad7ea87a798a409b373346b.zip chromium_src-67945b28c51b5d550ad7ea87a798a409b373346b.tar.gz chromium_src-67945b28c51b5d550ad7ea87a798a409b373346b.tar.bz2 |
Enable start_host compilation on Windows and Mac.
BUG=386441
Review URL: https://codereview.chromium.org/471243002
Cr-Commit-Position: refs/heads/master@{#294214}
Diffstat (limited to 'remoting/remoting_host.gypi')
-rw-r--r-- | remoting/remoting_host.gypi | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/remoting/remoting_host.gypi b/remoting/remoting_host.gypi index e387e93..d7f0e4d 100644 --- a/remoting/remoting_host.gypi +++ b/remoting/remoting_host.gypi @@ -561,7 +561,25 @@ ], }], }, # end of target 'remoting_native_messaging_manifests' - + { + 'target_name': 'remoting_start_host', + 'type': 'executable', + 'dependencies': [ + 'remoting_host_setup_base', + ], + 'sources': [ + 'host/setup/host_starter.cc', + 'host/setup/host_starter.h', + 'host/setup/start_host.cc', + ], + 'conditions': [ + ['OS=="linux" and use_allocator!="none"', { + 'dependencies': [ + '../base/allocator/allocator.gyp:allocator', + ], + }], + ], + }, # end of target 'remoting_start_host' { 'target_name': 'remoting_infoplist_strings', 'type': 'none', |