Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(492)

Unified Diff: remoting/remoting.gyp

Issue 9617027: Chromoting: Implemented security attention sequence (SAS) emulation on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/remoting.gyp
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index 57658dd40bd4cb54859dbd9e1852887c884c8ad1..2e379363516bfbfc1217758cbaaba761c5376c56 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -235,6 +235,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',
@@ -280,14 +281,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_service_messages.cc',
+ 'host/chromoting_service_messages.h',
'host/host_service.rc',
'host/host_service_resource.h',
'host/host_service_win.cc',
'host/host_service_win.h',
+ 'host/sas_sender_win.cc',
+ 'host/sas_sender_win.h',
'host/wts_console_monitor_win.h',
'host/wts_console_observer_win.h',
'host/wts_session_process_launcher_win.cc',
@@ -412,6 +418,11 @@
'host/plugin/host_plugin.rc',
],
}],
+ [ 'OS=="win"', {
+ 'dependencies': [
+ '../ipc/ipc.gyp:ipc'
+ ],
+ }],
],
}, # end of target 'remoting_host_plugin'
@@ -692,6 +703,12 @@
],
},
}],
+ ['OS=="win"', {
+ 'sources': [
+ 'host/chromoting_service_messages.cc',
+ 'host/chromoting_service_messages.h',
+ ],
+ }],
],
}, # end of target 'remoting_host'
@@ -752,6 +769,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'
{
@@ -1023,6 +1047,11 @@
'run_all_unittests.cc',
],
'conditions': [
+ [ 'OS=="win"', {
+ 'dependencies': [
+ '../ipc/ipc.gyp:ipc'
+ ],
+ }],
['chromeos == 0', {
'dependencies': [
'remoting_host'

Powered by Google App Engine
This is Rietveld 408576698