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

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
« no previous file with comments | « remoting/host/wts_session_process_launcher_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 { 227 {
228 'target_name': 'remoting_me2me_host', 228 'target_name': 'remoting_me2me_host',
229 'type': 'executable', 229 'type': 'executable',
230 'dependencies': [ 230 'dependencies': [
231 'remoting_base', 231 'remoting_base',
232 'remoting_host', 232 'remoting_host',
233 'remoting_jingle_glue', 233 'remoting_jingle_glue',
234 '../base/base.gyp:base', 234 '../base/base.gyp:base',
235 '../base/base.gyp:base_i18n', 235 '../base/base.gyp:base_i18n',
236 '../media/media.gyp:media', 236 '../media/media.gyp:media',
237 '../ipc/ipc.gyp:ipc',
237 ], 238 ],
238 'sources': [ 239 'sources': [
239 'host/host_event_logger_win.cc', 240 'host/host_event_logger_win.cc',
240 'host/host_event_logger.h', 241 'host/host_event_logger.h',
241 'host/remoting_host_messages.mc', 242 'host/remoting_host_messages.mc',
242 'host/remoting_me2me_host.cc', 243 'host/remoting_me2me_host.cc',
243 'host/system_event_logger.h', 244 'host/system_event_logger.h',
244 ], 245 ],
245 'include_dirs': [ 246 'include_dirs': [
246 '<(INTERMEDIATE_DIR)', 247 '<(INTERMEDIATE_DIR)',
(...skipping 25 matching lines...) Expand all
272 }, 273 },
273 }, # end of target 'remoting_me2me_host' 274 }, # end of target 'remoting_me2me_host'
274 275
275 { 276 {
276 'target_name': 'remoting_service', 277 'target_name': 'remoting_service',
277 'type': 'executable', 278 'type': 'executable',
278 'variables': { 'enable_wexit_time_destructors': 1, }, 279 'variables': { 'enable_wexit_time_destructors': 1, },
279 'dependencies': [ 280 'dependencies': [
280 '../base/base.gyp:base', 281 '../base/base.gyp:base',
281 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 282 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
283 '../ipc/ipc.gyp:ipc',
282 ], 284 ],
283 'sources': [ 285 'sources': [
284 'base/scoped_sc_handle_win.h', 286 'base/scoped_sc_handle_win.h',
287 'host/chromoting_messages.cc',
288 'host/chromoting_messages.h',
285 'host/host_service.rc', 289 'host/host_service.rc',
286 'host/host_service_resource.h', 290 'host/host_service_resource.h',
287 'host/host_service_win.cc', 291 'host/host_service_win.cc',
288 'host/host_service_win.h', 292 'host/host_service_win.h',
293 'host/sas_injector.h',
294 'host/sas_injector_win.cc',
289 'host/wts_console_monitor_win.h', 295 'host/wts_console_monitor_win.h',
290 'host/wts_console_observer_win.h', 296 'host/wts_console_observer_win.h',
291 'host/wts_session_process_launcher_win.cc', 297 'host/wts_session_process_launcher_win.cc',
292 'host/wts_session_process_launcher_win.h', 298 'host/wts_session_process_launcher_win.h',
293 ], 299 ],
294 'msvs_settings': { 300 'msvs_settings': {
295 'VCLinkerTool': { 301 'VCLinkerTool': {
296 'AdditionalDependencies': [ 302 'AdditionalDependencies': [
297 'wtsapi32.lib', 303 'wtsapi32.lib',
298 ], 304 ],
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 ], 403 ],
398 'conditions': [ 404 'conditions': [
399 ['mac_breakpad==1', { 405 ['mac_breakpad==1', {
400 'variables': { 406 'variables': {
401 # A real .dSYM is needed for dump_syms to operate on. 407 # A real .dSYM is needed for dump_syms to operate on.
402 'mac_real_dsym': 1, 408 'mac_real_dsym': 1,
403 }, 409 },
404 }], 410 }],
405 ], # conditions 411 ], # conditions
406 }], # OS=="mac" 412 }], # OS=="mac"
413 [ 'OS=="win"', {
414 'dependencies': [
415 '../ipc/ipc.gyp:ipc'
416 ],
417 }],
407 ['OS!="win"', { 418 ['OS!="win"', {
408 'sources!': [ 419 'sources!': [
409 'host/plugin/host_plugin.def', 420 'host/plugin/host_plugin.def',
410 'host/plugin/host_plugin.rc', 421 'host/plugin/host_plugin.rc',
411 ], 422 ],
412 }], 423 }],
413 ], 424 ],
414 }, # end of target 'remoting_host_plugin' 425 }, # end of target 'remoting_host_plugin'
415 426
416 { 427 {
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 'host/policy_hack/nat_policy.cc', 645 'host/policy_hack/nat_policy.cc',
635 'host/policy_hack/nat_policy_linux.cc', 646 'host/policy_hack/nat_policy_linux.cc',
636 'host/policy_hack/nat_policy_mac.mm', 647 'host/policy_hack/nat_policy_mac.mm',
637 'host/policy_hack/nat_policy_win.cc', 648 'host/policy_hack/nat_policy_win.cc',
638 'host/register_support_host_request.cc', 649 'host/register_support_host_request.cc',
639 'host/register_support_host_request.h', 650 'host/register_support_host_request.h',
640 'host/screen_recorder.cc', 651 'host/screen_recorder.cc',
641 'host/screen_recorder.h', 652 'host/screen_recorder.h',
642 'host/server_log_entry.cc', 653 'host/server_log_entry.cc',
643 'host/server_log_entry.h', 654 'host/server_log_entry.h',
655 'host/session_event_executor_win.cc',
656 'host/session_event_executor_win.h',
644 'host/signaling_connector.cc', 657 'host/signaling_connector.cc',
645 'host/signaling_connector.h', 658 'host/signaling_connector.h',
646 'host/ui_strings.cc', 659 'host/ui_strings.cc',
647 'host/ui_strings.h', 660 'host/ui_strings.h',
648 'host/user_authenticator.h', 661 'host/user_authenticator.h',
649 'host/user_authenticator_linux.cc', 662 'host/user_authenticator_linux.cc',
650 'host/user_authenticator_mac.cc', 663 'host/user_authenticator_mac.cc',
651 'host/user_authenticator_win.cc', 664 'host/user_authenticator_win.cc',
652 ], 665 ],
653 'conditions': [ 666 'conditions': [
(...skipping 29 matching lines...) Expand all
683 '../third_party/GTM/AppKit', 696 '../third_party/GTM/AppKit',
684 '../third_party/GTM/DebugUtils', 697 '../third_party/GTM/DebugUtils',
685 '../third_party/GTM/Foundation', 698 '../third_party/GTM/Foundation',
686 ], 699 ],
687 'link_settings': { 700 'link_settings': {
688 'libraries': [ 701 'libraries': [
689 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 702 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
690 ], 703 ],
691 }, 704 },
692 }], 705 }],
706 ['OS=="win"', {
707 'sources': [
708 'host/chromoting_messages.cc',
709 'host/chromoting_messages.h',
710 ],
711 }],
693 ], 712 ],
694 }, # end of target 'remoting_host' 713 }, # end of target 'remoting_host'
695 714
696 { 715 {
697 'target_name': 'remoting_client', 716 'target_name': 'remoting_client',
698 'type': 'static_library', 717 'type': 'static_library',
699 'variables': { 'enable_wexit_time_destructors': 1, }, 718 'variables': { 'enable_wexit_time_destructors': 1, },
700 'dependencies': [ 719 'dependencies': [
701 'remoting_base', 720 'remoting_base',
702 'remoting_jingle_glue', 721 'remoting_jingle_glue',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 'host/continue_window_linux.cc', 762 'host/continue_window_linux.cc',
744 'host/continue_window_win.cc', 763 'host/continue_window_win.cc',
745 'host/disconnect_window_linux.cc', 764 'host/disconnect_window_linux.cc',
746 'host/disconnect_window_mac.h', 765 'host/disconnect_window_mac.h',
747 'host/disconnect_window_mac.mm', 766 'host/disconnect_window_mac.mm',
748 'host/disconnect_window_win.cc', 767 'host/disconnect_window_win.cc',
749 'host/it2me_host_user_interface.cc', 768 'host/it2me_host_user_interface.cc',
750 'host/it2me_host_user_interface.h', 769 'host/it2me_host_user_interface.h',
751 'host/simple_host_process.cc', 770 'host/simple_host_process.cc',
752 ], 771 ],
772 'conditions': [
773 [ 'OS=="win"', {
774 'dependencies': [
775 '../ipc/ipc.gyp:ipc'
776 ],
777 }],
778 ],
753 }, # end of target 'remoting_simple_host' 779 }, # end of target 'remoting_simple_host'
754 780
755 { 781 {
756 'target_name': 'remoting_host_keygen', 782 'target_name': 'remoting_host_keygen',
757 'type': 'executable', 783 'type': 'executable',
758 'dependencies': [ 784 'dependencies': [
759 'remoting_base', 785 'remoting_base',
760 '../base/base.gyp:base', 786 '../base/base.gyp:base',
761 '../base/base.gyp:base_i18n', 787 '../base/base.gyp:base_i18n',
762 '../crypto/crypto.gyp:crypto', 788 '../crypto/crypto.gyp:crypto',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 'protocol/protocol_mock_objects.h', 1040 'protocol/protocol_mock_objects.h',
1015 'protocol/ppapi_module_stub.cc', 1041 'protocol/ppapi_module_stub.cc',
1016 'protocol/rtp_video_reader_unittest.cc', 1042 'protocol/rtp_video_reader_unittest.cc',
1017 'protocol/rtp_video_writer_unittest.cc', 1043 'protocol/rtp_video_writer_unittest.cc',
1018 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 1044 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
1019 'protocol/v1_authenticator_unittest.cc', 1045 'protocol/v1_authenticator_unittest.cc',
1020 'protocol/v2_authenticator_unittest.cc', 1046 'protocol/v2_authenticator_unittest.cc',
1021 'run_all_unittests.cc', 1047 'run_all_unittests.cc',
1022 ], 1048 ],
1023 'conditions': [ 1049 'conditions': [
1050 [ 'OS=="win"', {
1051 'dependencies': [
1052 '../ipc/ipc.gyp:ipc'
1053 ],
1054 }],
1024 ['chromeos == 0', { 1055 ['chromeos == 0', {
1025 'dependencies': [ 1056 'dependencies': [
1026 'remoting_host' 1057 'remoting_host'
1027 ], 1058 ],
1028 'sources': [ 1059 'sources': [
1029 'host/capturer_helper_unittest.cc', 1060 'host/capturer_helper_unittest.cc',
1030 'host/chromoting_host_context_unittest.cc', 1061 'host/chromoting_host_context_unittest.cc',
1031 'host/chromoting_host_unittest.cc', 1062 'host/chromoting_host_unittest.cc',
1032 'host/client_session_unittest.cc', 1063 'host/client_session_unittest.cc',
1033 'host/differ_block_unittest.cc', 1064 'host/differ_block_unittest.cc',
(...skipping 26 matching lines...) Expand all
1060 '../base/allocator/allocator.gyp:allocator', 1091 '../base/allocator/allocator.gyp:allocator',
1061 ], 1092 ],
1062 }, 1093 },
1063 ], 1094 ],
1064 ], 1095 ],
1065 }], 1096 }],
1066 ], # end of 'conditions' 1097 ], # end of 'conditions'
1067 }, # end of target 'remoting_unittests' 1098 }, # end of target 'remoting_unittests'
1068 ], # end of targets 1099 ], # end of targets
1069 } 1100 }
OLDNEW
« no previous file with comments | « remoting/host/wts_session_process_launcher_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698