| Index: remoting/remoting.gyp
|
| diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
|
| index 73cdb40a9575d9598fc8863bc827921620895996..6e5d1bc5b83c3b616d614677f5f8edb66833c95c 100644
|
| --- a/remoting/remoting.gyp
|
| +++ b/remoting/remoting.gyp
|
| @@ -234,6 +234,7 @@
|
| '../base/base.gyp:base',
|
| '../base/base.gyp:base_i18n',
|
| '../media/media.gyp:media',
|
| + '../ipc/ipc.gyp:ipc',
|
| ],
|
| 'sources': [
|
| 'host/host_event_logger_win.cc',
|
| @@ -279,14 +280,19 @@
|
| 'dependencies': [
|
| '../base/base.gyp:base',
|
| '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
|
| + '../ipc/ipc.gyp:ipc',
|
| ],
|
| 'sources': [
|
| 'base/scoped_sc_handle_win.cc',
|
| 'base/scoped_sc_handle_win.h',
|
| + 'host/chromoting_session_messages.cc',
|
| + 'host/chromoting_session_messages.h',
|
| 'host/host_service.rc',
|
| 'host/host_service_resource.h',
|
| 'host/host_service_win.cc',
|
| 'host/host_service_win.h',
|
| + 'host/sas_injector_win.cc',
|
| + 'host/sas_injector_win.h',
|
| 'host/wts_console_monitor_win.h',
|
| 'host/wts_console_observer_win.h',
|
| 'host/wts_session_process_launcher_win.cc',
|
| @@ -411,6 +417,11 @@
|
| 'host/plugin/host_plugin.rc',
|
| ],
|
| }],
|
| + [ 'OS=="win"', {
|
| + 'dependencies': [
|
| + '../ipc/ipc.gyp:ipc'
|
| + ],
|
| + }],
|
| ],
|
| }, # end of target 'remoting_host_plugin'
|
|
|
| @@ -642,6 +653,8 @@
|
| 'host/screen_recorder.h',
|
| 'host/server_log_entry.cc',
|
| 'host/server_log_entry.h',
|
| + 'host/session_event_executor_win.cc',
|
| + 'host/session_event_executor_win.h',
|
| 'host/signaling_connector.cc',
|
| 'host/signaling_connector.h',
|
| 'host/ui_strings.cc',
|
| @@ -691,6 +704,12 @@
|
| ],
|
| },
|
| }],
|
| + ['OS=="win"', {
|
| + 'sources': [
|
| + 'host/chromoting_session_messages.cc',
|
| + 'host/chromoting_session_messages.h',
|
| + ],
|
| + }],
|
| ],
|
| }, # end of target 'remoting_host'
|
|
|
| @@ -751,6 +770,13 @@
|
| 'host/it2me_host_user_interface.h',
|
| 'host/simple_host_process.cc',
|
| ],
|
| + 'conditions': [
|
| + [ 'OS=="win"', {
|
| + 'dependencies': [
|
| + '../ipc/ipc.gyp:ipc'
|
| + ],
|
| + }],
|
| + ],
|
| }, # end of target 'remoting_simple_host'
|
|
|
| {
|
| @@ -1022,6 +1048,11 @@
|
| 'run_all_unittests.cc',
|
| ],
|
| 'conditions': [
|
| + [ 'OS=="win"', {
|
| + 'dependencies': [
|
| + '../ipc/ipc.gyp:ipc'
|
| + ],
|
| + }],
|
| ['chromeos == 0', {
|
| 'dependencies': [
|
| 'remoting_host'
|
|
|