OLD | NEW |
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 Loading... |
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 Loading... |
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.cc', | 286 'base/scoped_sc_handle_win.cc', |
285 'base/scoped_sc_handle_win.h', | 287 'base/scoped_sc_handle_win.h', |
| 288 'host/chromoting_session_messages.cc', |
| 289 'host/chromoting_session_messages.h', |
286 'host/host_service.rc', | 290 'host/host_service.rc', |
287 'host/host_service_resource.h', | 291 'host/host_service_resource.h', |
288 'host/host_service_win.cc', | 292 'host/host_service_win.cc', |
289 'host/host_service_win.h', | 293 'host/host_service_win.h', |
| 294 'host/sas_injector_win.cc', |
| 295 'host/sas_injector_win.h', |
290 'host/wts_console_monitor_win.h', | 296 'host/wts_console_monitor_win.h', |
291 'host/wts_console_observer_win.h', | 297 'host/wts_console_observer_win.h', |
292 'host/wts_session_process_launcher_win.cc', | 298 'host/wts_session_process_launcher_win.cc', |
293 'host/wts_session_process_launcher_win.h', | 299 'host/wts_session_process_launcher_win.h', |
294 ], | 300 ], |
295 'msvs_settings': { | 301 'msvs_settings': { |
296 'VCLinkerTool': { | 302 'VCLinkerTool': { |
297 'AdditionalDependencies': [ | 303 'AdditionalDependencies': [ |
298 'wtsapi32.lib', | 304 'wtsapi32.lib', |
299 ], | 305 ], |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 }, | 410 }, |
405 }], | 411 }], |
406 ], # conditions | 412 ], # conditions |
407 }], # OS=="mac" | 413 }], # OS=="mac" |
408 ['OS!="win"', { | 414 ['OS!="win"', { |
409 'sources!': [ | 415 'sources!': [ |
410 'host/plugin/host_plugin.def', | 416 'host/plugin/host_plugin.def', |
411 'host/plugin/host_plugin.rc', | 417 'host/plugin/host_plugin.rc', |
412 ], | 418 ], |
413 }], | 419 }], |
| 420 [ 'OS=="win"', { |
| 421 'dependencies': [ |
| 422 '../ipc/ipc.gyp:ipc' |
| 423 ], |
| 424 }], |
414 ], | 425 ], |
415 }, # end of target 'remoting_host_plugin' | 426 }, # end of target 'remoting_host_plugin' |
416 | 427 |
417 { | 428 { |
418 'target_name': 'remoting_webapp', | 429 'target_name': 'remoting_webapp', |
419 'type': 'none', | 430 'type': 'none', |
420 'dependencies': [ | 431 'dependencies': [ |
421 'remoting_host_plugin', | 432 'remoting_host_plugin', |
422 ], | 433 ], |
423 'sources': [ | 434 'sources': [ |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 'host/policy_hack/nat_policy.cc', | 646 'host/policy_hack/nat_policy.cc', |
636 'host/policy_hack/nat_policy_linux.cc', | 647 'host/policy_hack/nat_policy_linux.cc', |
637 'host/policy_hack/nat_policy_mac.mm', | 648 'host/policy_hack/nat_policy_mac.mm', |
638 'host/policy_hack/nat_policy_win.cc', | 649 'host/policy_hack/nat_policy_win.cc', |
639 'host/register_support_host_request.cc', | 650 'host/register_support_host_request.cc', |
640 'host/register_support_host_request.h', | 651 'host/register_support_host_request.h', |
641 'host/screen_recorder.cc', | 652 'host/screen_recorder.cc', |
642 'host/screen_recorder.h', | 653 'host/screen_recorder.h', |
643 'host/server_log_entry.cc', | 654 'host/server_log_entry.cc', |
644 'host/server_log_entry.h', | 655 'host/server_log_entry.h', |
| 656 'host/session_event_executor_win.cc', |
| 657 'host/session_event_executor_win.h', |
645 'host/signaling_connector.cc', | 658 'host/signaling_connector.cc', |
646 'host/signaling_connector.h', | 659 'host/signaling_connector.h', |
647 'host/ui_strings.cc', | 660 'host/ui_strings.cc', |
648 'host/ui_strings.h', | 661 'host/ui_strings.h', |
649 'host/user_authenticator.h', | 662 'host/user_authenticator.h', |
650 'host/user_authenticator_linux.cc', | 663 'host/user_authenticator_linux.cc', |
651 'host/user_authenticator_mac.cc', | 664 'host/user_authenticator_mac.cc', |
652 'host/user_authenticator_win.cc', | 665 'host/user_authenticator_win.cc', |
653 ], | 666 ], |
654 'conditions': [ | 667 'conditions': [ |
(...skipping 29 matching lines...) Expand all Loading... |
684 '../third_party/GTM/AppKit', | 697 '../third_party/GTM/AppKit', |
685 '../third_party/GTM/DebugUtils', | 698 '../third_party/GTM/DebugUtils', |
686 '../third_party/GTM/Foundation', | 699 '../third_party/GTM/Foundation', |
687 ], | 700 ], |
688 'link_settings': { | 701 'link_settings': { |
689 'libraries': [ | 702 'libraries': [ |
690 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 703 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
691 ], | 704 ], |
692 }, | 705 }, |
693 }], | 706 }], |
| 707 ['OS=="win"', { |
| 708 'sources': [ |
| 709 'host/chromoting_session_messages.cc', |
| 710 'host/chromoting_session_messages.h', |
| 711 ], |
| 712 }], |
694 ], | 713 ], |
695 }, # end of target 'remoting_host' | 714 }, # end of target 'remoting_host' |
696 | 715 |
697 { | 716 { |
698 'target_name': 'remoting_client', | 717 'target_name': 'remoting_client', |
699 'type': 'static_library', | 718 'type': 'static_library', |
700 'variables': { 'enable_wexit_time_destructors': 1, }, | 719 'variables': { 'enable_wexit_time_destructors': 1, }, |
701 'dependencies': [ | 720 'dependencies': [ |
702 'remoting_base', | 721 'remoting_base', |
703 'remoting_jingle_glue', | 722 'remoting_jingle_glue', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 'host/continue_window_linux.cc', | 763 'host/continue_window_linux.cc', |
745 'host/continue_window_win.cc', | 764 'host/continue_window_win.cc', |
746 'host/disconnect_window_linux.cc', | 765 'host/disconnect_window_linux.cc', |
747 'host/disconnect_window_mac.h', | 766 'host/disconnect_window_mac.h', |
748 'host/disconnect_window_mac.mm', | 767 'host/disconnect_window_mac.mm', |
749 'host/disconnect_window_win.cc', | 768 'host/disconnect_window_win.cc', |
750 'host/it2me_host_user_interface.cc', | 769 'host/it2me_host_user_interface.cc', |
751 'host/it2me_host_user_interface.h', | 770 'host/it2me_host_user_interface.h', |
752 'host/simple_host_process.cc', | 771 'host/simple_host_process.cc', |
753 ], | 772 ], |
| 773 'conditions': [ |
| 774 [ 'OS=="win"', { |
| 775 'dependencies': [ |
| 776 '../ipc/ipc.gyp:ipc' |
| 777 ], |
| 778 }], |
| 779 ], |
754 }, # end of target 'remoting_simple_host' | 780 }, # end of target 'remoting_simple_host' |
755 | 781 |
756 { | 782 { |
757 'target_name': 'remoting_host_keygen', | 783 'target_name': 'remoting_host_keygen', |
758 'type': 'executable', | 784 'type': 'executable', |
759 'dependencies': [ | 785 'dependencies': [ |
760 'remoting_base', | 786 'remoting_base', |
761 '../base/base.gyp:base', | 787 '../base/base.gyp:base', |
762 '../base/base.gyp:base_i18n', | 788 '../base/base.gyp:base_i18n', |
763 '../crypto/crypto.gyp:crypto', | 789 '../crypto/crypto.gyp:crypto', |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1015 'protocol/protocol_mock_objects.h', | 1041 'protocol/protocol_mock_objects.h', |
1016 'protocol/ppapi_module_stub.cc', | 1042 'protocol/ppapi_module_stub.cc', |
1017 'protocol/rtp_video_reader_unittest.cc', | 1043 'protocol/rtp_video_reader_unittest.cc', |
1018 'protocol/rtp_video_writer_unittest.cc', | 1044 'protocol/rtp_video_writer_unittest.cc', |
1019 'protocol/ssl_hmac_channel_authenticator_unittest.cc', | 1045 'protocol/ssl_hmac_channel_authenticator_unittest.cc', |
1020 'protocol/v1_authenticator_unittest.cc', | 1046 'protocol/v1_authenticator_unittest.cc', |
1021 'protocol/v2_authenticator_unittest.cc', | 1047 'protocol/v2_authenticator_unittest.cc', |
1022 'run_all_unittests.cc', | 1048 'run_all_unittests.cc', |
1023 ], | 1049 ], |
1024 'conditions': [ | 1050 'conditions': [ |
| 1051 [ 'OS=="win"', { |
| 1052 'dependencies': [ |
| 1053 '../ipc/ipc.gyp:ipc' |
| 1054 ], |
| 1055 }], |
1025 ['chromeos == 0', { | 1056 ['chromeos == 0', { |
1026 'dependencies': [ | 1057 'dependencies': [ |
1027 'remoting_host' | 1058 'remoting_host' |
1028 ], | 1059 ], |
1029 'sources': [ | 1060 'sources': [ |
1030 'host/capturer_helper_unittest.cc', | 1061 'host/capturer_helper_unittest.cc', |
1031 'host/chromoting_host_context_unittest.cc', | 1062 'host/chromoting_host_context_unittest.cc', |
1032 'host/chromoting_host_unittest.cc', | 1063 'host/chromoting_host_unittest.cc', |
1033 'host/client_session_unittest.cc', | 1064 'host/client_session_unittest.cc', |
1034 'host/differ_block_unittest.cc', | 1065 'host/differ_block_unittest.cc', |
(...skipping 26 matching lines...) Expand all Loading... |
1061 '../base/allocator/allocator.gyp:allocator', | 1092 '../base/allocator/allocator.gyp:allocator', |
1062 ], | 1093 ], |
1063 }, | 1094 }, |
1064 ], | 1095 ], |
1065 ], | 1096 ], |
1066 }], | 1097 }], |
1067 ], # end of 'conditions' | 1098 ], # end of 'conditions' |
1068 }, # end of target 'remoting_unittests' | 1099 }, # end of target 'remoting_unittests' |
1069 ], # end of targets | 1100 ], # end of targets |
1070 } | 1101 } |
OLD | NEW |