Index: remoting/remoting.gyp |
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp |
index 73cdb40a9575d9598fc8863bc827921620895996..6c62d2fc32afcd0c09e2629b336dd6c8bf5f6616 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' |
@@ -691,6 +702,12 @@ |
], |
}, |
}], |
+ ['OS=="win"', { |
+ 'sources': [ |
+ 'host/chromoting_session_messages.cc', |
+ 'host/chromoting_session_messages.h', |
+ ], |
+ }], |
], |
}, # end of target 'remoting_host' |
@@ -751,6 +768,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 +1046,11 @@ |
'run_all_unittests.cc', |
], |
'conditions': [ |
+ [ 'OS=="win"', { |
+ 'dependencies': [ |
+ '../ipc/ipc.gyp:ipc' |
+ ], |
+ }], |
['chromeos == 0', { |
'dependencies': [ |
'remoting_host' |