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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # Use consistent strings across all platforms. Note that the plugin name 10 # Use consistent strings across all platforms. Note that the plugin name
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 { 228 {
229 'target_name': 'remoting_me2me_host', 229 'target_name': 'remoting_me2me_host',
230 'type': 'executable', 230 'type': 'executable',
231 'dependencies': [ 231 'dependencies': [
232 'remoting_base', 232 'remoting_base',
233 'remoting_host', 233 'remoting_host',
234 'remoting_jingle_glue', 234 'remoting_jingle_glue',
235 '../base/base.gyp:base', 235 '../base/base.gyp:base',
236 '../base/base.gyp:base_i18n', 236 '../base/base.gyp:base_i18n',
237 '../media/media.gyp:media', 237 '../media/media.gyp:media',
238 '../ipc/ipc.gyp:ipc',
238 ], 239 ],
239 'sources': [ 240 'sources': [
240 'host/host_event_logger_win.cc', 241 'host/host_event_logger_win.cc',
241 'host/host_event_logger.h', 242 'host/host_event_logger.h',
242 'host/remoting_host_messages.mc', 243 'host/remoting_host_messages.mc',
243 'host/remoting_me2me_host.cc', 244 'host/remoting_me2me_host.cc',
244 'host/system_event_logger.h', 245 'host/system_event_logger.h',
245 ], 246 ],
246 'include_dirs': [ 247 'include_dirs': [
247 '<(INTERMEDIATE_DIR)', 248 '<(INTERMEDIATE_DIR)',
(...skipping 25 matching lines...) Expand all
273 }, 274 },
274 }, # end of target 'remoting_me2me_host' 275 }, # end of target 'remoting_me2me_host'
275 276
276 { 277 {
277 'target_name': 'remoting_service', 278 'target_name': 'remoting_service',
278 'type': 'executable', 279 'type': 'executable',
279 'variables': { 'enable_wexit_time_destructors': 1, }, 280 'variables': { 'enable_wexit_time_destructors': 1, },
280 'dependencies': [ 281 'dependencies': [
281 '../base/base.gyp:base', 282 '../base/base.gyp:base',
282 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 283 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
284 '../ipc/ipc.gyp:ipc',
283 ], 285 ],
284 'sources': [ 286 'sources': [
285 'base/scoped_sc_handle_win.cc', 287 'base/scoped_sc_handle_win.cc',
286 'base/scoped_sc_handle_win.h', 288 'base/scoped_sc_handle_win.h',
289 'host/chromoting_service_messages.cc',
290 'host/chromoting_service_messages.h',
287 'host/host_service.rc', 291 'host/host_service.rc',
288 'host/host_service_resource.h', 292 'host/host_service_resource.h',
289 'host/host_service_win.cc', 293 'host/host_service_win.cc',
290 'host/host_service_win.h', 294 'host/host_service_win.h',
295 'host/sas_sender_win.cc',
296 'host/sas_sender_win.h',
291 'host/wts_console_monitor_win.h', 297 'host/wts_console_monitor_win.h',
292 'host/wts_console_observer_win.h', 298 'host/wts_console_observer_win.h',
293 'host/wts_session_process_launcher_win.cc', 299 'host/wts_session_process_launcher_win.cc',
294 'host/wts_session_process_launcher_win.h', 300 'host/wts_session_process_launcher_win.h',
295 ], 301 ],
296 'msvs_settings': { 302 'msvs_settings': {
297 'VCLinkerTool': { 303 'VCLinkerTool': {
298 'AdditionalDependencies': [ 304 'AdditionalDependencies': [
299 'wtsapi32.lib', 305 'wtsapi32.lib',
300 ], 306 ],
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 }, 411 },
406 }], 412 }],
407 ], # conditions 413 ], # conditions
408 }], # OS=="mac" 414 }], # OS=="mac"
409 ['OS!="win"', { 415 ['OS!="win"', {
410 'sources!': [ 416 'sources!': [
411 'host/plugin/host_plugin.def', 417 'host/plugin/host_plugin.def',
412 'host/plugin/host_plugin.rc', 418 'host/plugin/host_plugin.rc',
413 ], 419 ],
414 }], 420 }],
421 [ 'OS=="win"', {
422 'dependencies': [
423 '../ipc/ipc.gyp:ipc'
424 ],
425 }],
415 ], 426 ],
416 }, # end of target 'remoting_host_plugin' 427 }, # end of target 'remoting_host_plugin'
417 428
418 { 429 {
419 'target_name': 'remoting_webapp', 430 'target_name': 'remoting_webapp',
420 'type': 'none', 431 'type': 'none',
421 'dependencies': [ 432 'dependencies': [
422 'remoting_host_plugin', 433 'remoting_host_plugin',
423 ], 434 ],
424 'sources': [ 435 'sources': [
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 '../third_party/GTM/AppKit', 696 '../third_party/GTM/AppKit',
686 '../third_party/GTM/DebugUtils', 697 '../third_party/GTM/DebugUtils',
687 '../third_party/GTM/Foundation', 698 '../third_party/GTM/Foundation',
688 ], 699 ],
689 'link_settings': { 700 'link_settings': {
690 'libraries': [ 701 'libraries': [
691 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 702 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
692 ], 703 ],
693 }, 704 },
694 }], 705 }],
706 ['OS=="win"', {
707 'sources': [
708 'host/chromoting_service_messages.cc',
709 'host/chromoting_service_messages.h',
710 ],
711 }],
695 ], 712 ],
696 }, # end of target 'remoting_host' 713 }, # end of target 'remoting_host'
697 714
698 { 715 {
699 'target_name': 'remoting_client', 716 'target_name': 'remoting_client',
700 'type': 'static_library', 717 'type': 'static_library',
701 'variables': { 'enable_wexit_time_destructors': 1, }, 718 'variables': { 'enable_wexit_time_destructors': 1, },
702 'dependencies': [ 719 'dependencies': [
703 'remoting_base', 720 'remoting_base',
704 'remoting_jingle_glue', 721 'remoting_jingle_glue',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 'host/continue_window_linux.cc', 762 'host/continue_window_linux.cc',
746 'host/continue_window_win.cc', 763 'host/continue_window_win.cc',
747 'host/disconnect_window_linux.cc', 764 'host/disconnect_window_linux.cc',
748 'host/disconnect_window_mac.h', 765 'host/disconnect_window_mac.h',
749 'host/disconnect_window_mac.mm', 766 'host/disconnect_window_mac.mm',
750 'host/disconnect_window_win.cc', 767 'host/disconnect_window_win.cc',
751 'host/it2me_host_user_interface.cc', 768 'host/it2me_host_user_interface.cc',
752 'host/it2me_host_user_interface.h', 769 'host/it2me_host_user_interface.h',
753 'host/simple_host_process.cc', 770 'host/simple_host_process.cc',
754 ], 771 ],
772 'conditions': [
773 [ 'OS=="win"', {
774 'dependencies': [
775 '../ipc/ipc.gyp:ipc'
776 ],
777 }],
778 ],
755 }, # end of target 'remoting_simple_host' 779 }, # end of target 'remoting_simple_host'
756 780
757 { 781 {
758 'target_name': 'remoting_host_keygen', 782 'target_name': 'remoting_host_keygen',
759 'type': 'executable', 783 'type': 'executable',
760 'dependencies': [ 784 'dependencies': [
761 'remoting_base', 785 'remoting_base',
762 '../base/base.gyp:base', 786 '../base/base.gyp:base',
763 '../base/base.gyp:base_i18n', 787 '../base/base.gyp:base_i18n',
764 '../crypto/crypto.gyp:crypto', 788 '../crypto/crypto.gyp:crypto',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 'protocol/protocol_mock_objects.h', 1040 'protocol/protocol_mock_objects.h',
1017 'protocol/ppapi_module_stub.cc', 1041 'protocol/ppapi_module_stub.cc',
1018 'protocol/rtp_video_reader_unittest.cc', 1042 'protocol/rtp_video_reader_unittest.cc',
1019 'protocol/rtp_video_writer_unittest.cc', 1043 'protocol/rtp_video_writer_unittest.cc',
1020 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 1044 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
1021 'protocol/v1_authenticator_unittest.cc', 1045 'protocol/v1_authenticator_unittest.cc',
1022 'protocol/v2_authenticator_unittest.cc', 1046 'protocol/v2_authenticator_unittest.cc',
1023 'run_all_unittests.cc', 1047 'run_all_unittests.cc',
1024 ], 1048 ],
1025 'conditions': [ 1049 'conditions': [
1050 [ 'OS=="win"', {
1051 'dependencies': [
1052 '../ipc/ipc.gyp:ipc'
1053 ],
1054 }],
1026 ['chromeos == 0', { 1055 ['chromeos == 0', {
1027 'dependencies': [ 1056 'dependencies': [
1028 'remoting_host' 1057 'remoting_host'
1029 ], 1058 ],
1030 'sources': [ 1059 'sources': [
1031 'host/capturer_helper_unittest.cc', 1060 'host/capturer_helper_unittest.cc',
1032 'host/chromoting_host_context_unittest.cc', 1061 'host/chromoting_host_context_unittest.cc',
1033 'host/chromoting_host_unittest.cc', 1062 'host/chromoting_host_unittest.cc',
1034 'host/client_session_unittest.cc', 1063 'host/client_session_unittest.cc',
1035 'host/differ_block_unittest.cc', 1064 'host/differ_block_unittest.cc',
(...skipping 26 matching lines...) Expand all
1062 '../base/allocator/allocator.gyp:allocator', 1091 '../base/allocator/allocator.gyp:allocator',
1063 ], 1092 ],
1064 }, 1093 },
1065 ], 1094 ],
1066 ], 1095 ],
1067 }], 1096 }],
1068 ], # end of 'conditions' 1097 ], # end of 'conditions'
1069 }, # end of target 'remoting_unittests' 1098 }, # end of target 'remoting_unittests'
1070 ], # end of targets 1099 ], # end of targets
1071 } 1100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698