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

Side by Side Diff: remoting/remoting.gyp

Issue 11231060: [Chromoting] The desktop process now creates a pre-connected pipe and passes (with some help of the… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixup Created 8 years, 2 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 10
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 'STRICT', 590 'STRICT',
591 'DAEMON_CONTROLLER_CLSID="{<(daemon_controller_clsid)}"', 591 'DAEMON_CONTROLLER_CLSID="{<(daemon_controller_clsid)}"',
592 ], 592 ],
593 'include_dirs': [ 593 'include_dirs': [
594 '<(INTERMEDIATE_DIR)', 594 '<(INTERMEDIATE_DIR)',
595 ], 595 ],
596 'dependencies': [ 596 'dependencies': [
597 '../base/base.gyp:base', 597 '../base/base.gyp:base',
598 'remoting_breakpad', 598 'remoting_breakpad',
599 'remoting_elevated_controller', 599 'remoting_elevated_controller',
600 'remoting_host',
600 'remoting_host_logging', 601 'remoting_host_logging',
601 'remoting_protocol', 602 'remoting_protocol',
602 'remoting_version_resources', 603 'remoting_version_resources',
603 ], 604 ],
604 'sources': [ 605 'sources': [
605 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_controller_version.rc' , 606 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_controller_version.rc' ,
606 'host/pin_hash.cc', 607 'host/pin_hash.cc',
607 'host/pin_hash.h', 608 'host/pin_hash.h',
608 'host/usage_stats_consent.h',
609 'host/usage_stats_consent_win.cc',
610 'host/verify_config_window_win.cc', 609 'host/verify_config_window_win.cc',
611 'host/verify_config_window_win.h', 610 'host/verify_config_window_win.h',
612 'host/win/elevated_controller.cc', 611 'host/win/elevated_controller.cc',
613 'host/win/elevated_controller.h', 612 'host/win/elevated_controller.h',
614 'host/win/elevated_controller.rc', 613 'host/win/elevated_controller.rc',
615 'host/win/elevated_controller_module.cc', 614 'host/win/elevated_controller_module.cc',
616 'host/win/omaha.cc', 615 'host/win/omaha.cc',
617 'host/win/omaha.h', 616 'host/win/omaha.h',
618 ], 617 ],
619 'link_settings': { 618 'link_settings': {
(...skipping 20 matching lines...) Expand all
640 'type': 'executable', 639 'type': 'executable',
641 'variables': { 'enable_wexit_time_destructors': 1, }, 640 'variables': { 'enable_wexit_time_destructors': 1, },
642 'dependencies': [ 641 'dependencies': [
643 '../base/base.gyp:base', 642 '../base/base.gyp:base',
644 '../base/base.gyp:base_static', 643 '../base/base.gyp:base_static',
645 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 644 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
646 '../ipc/ipc.gyp:ipc', 645 '../ipc/ipc.gyp:ipc',
647 '../net/net.gyp:net', 646 '../net/net.gyp:net',
648 'remoting_base', 647 'remoting_base',
649 'remoting_breakpad', 648 'remoting_breakpad',
649 'remoting_host',
650 'remoting_host_logging', 650 'remoting_host_logging',
651 'remoting_version_resources', 651 'remoting_version_resources',
652 ], 652 ],
653 'sources': [ 653 'sources': [
654 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_daemon_version.rc', 654 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_daemon_version.rc',
655 'base/scoped_sc_handle_win.h', 655 'base/scoped_sc_handle_win.h',
656 'host/chromoting_messages.cc', 656 'host/chromoting_messages.cc',
657 'host/chromoting_messages.h', 657 'host/chromoting_messages.h',
658 'host/config_file_watcher.cc', 658 'host/config_file_watcher.cc',
659 'host/config_file_watcher.h', 659 'host/config_file_watcher.h',
660 'host/daemon_process.cc', 660 'host/daemon_process.cc',
661 'host/daemon_process.h', 661 'host/daemon_process.h',
662 'host/daemon_process_win.cc', 662 'host/daemon_process_win.cc',
663 'host/desktop_session.cc', 663 'host/desktop_session.cc',
664 'host/desktop_session.h', 664 'host/desktop_session.h',
665 'host/desktop_session_win.cc', 665 'host/desktop_session_win.cc',
666 'host/desktop_session_win.h', 666 'host/desktop_session_win.h',
667 'host/host_exit_codes.h', 667 'host/host_exit_codes.h',
668 'host/ipc_consts.cc', 668 'host/ipc_consts.cc',
669 'host/ipc_consts.h', 669 'host/ipc_consts.h',
670 'host/usage_stats_consent.h',
671 'host/usage_stats_consent_win.cc',
672 'host/win/host_service.cc', 670 'host/win/host_service.cc',
673 'host/win/host_service.h', 671 'host/win/host_service.h',
674 'host/win/host_service.rc', 672 'host/win/host_service.rc',
675 'host/win/host_service_resource.h', 673 'host/win/host_service_resource.h',
676 'host/win/launch_process_with_token.cc',
677 'host/win/launch_process_with_token.h',
678 'host/win/omaha.cc', 674 'host/win/omaha.cc',
679 'host/win/omaha.h', 675 'host/win/omaha.h',
680 'host/win/unprivileged_process_delegate.cc', 676 'host/win/unprivileged_process_delegate.cc',
681 'host/win/unprivileged_process_delegate.h', 677 'host/win/unprivileged_process_delegate.h',
682 'host/win/worker_process_launcher.cc', 678 'host/win/worker_process_launcher.cc',
683 'host/win/worker_process_launcher.h', 679 'host/win/worker_process_launcher.h',
684 'host/win/wts_console_monitor.h', 680 'host/win/wts_console_monitor.h',
685 'host/win/wts_console_observer.h', 681 'host/win/wts_console_observer.h',
686 'host/win/wts_console_session_process_driver.cc', 682 'host/win/wts_console_session_process_driver.cc',
687 'host/win/wts_console_session_process_driver.h', 683 'host/win/wts_console_session_process_driver.h',
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 '<@(_generated_files_dst)', 901 '<@(_generated_files_dst)',
906 '--defs', 902 '--defs',
907 '<@(_defs)', 903 '<@(_defs)',
908 ], 904 ],
909 }, 905 },
910 ], # actions 906 ], # actions
911 }, # end of target 'remoting_me2me_host_archive' 907 }, # end of target 'remoting_me2me_host_archive'
912 ], # end of 'targets' 908 ], # end of 'targets'
913 }], # '<(wix_path) != ""' 909 }], # '<(wix_path) != ""'
914 910
915 ['remoting_multi_process != 0', {
916 'targets': [
917 {
918 'target_name': 'remoting_desktop',
919 'type': 'executable',
920 'variables': { 'enable_wexit_time_destructors': 1, },
921 'dependencies': [
922 'remoting_base',
923 'remoting_breakpad',
924 'remoting_host',
925 'remoting_host_logging',
926 'remoting_version_resources',
927 '../base/base.gyp:base',
928 '../ipc/ipc.gyp:ipc',
929 ],
930 'sources': [
931 'host/desktop_process.cc',
932 'host/desktop_process.h',
933 'host/host_ui.rc',
934 'host/usage_stats_consent.h',
935 'host/usage_stats_consent_win.cc',
936 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_desktop_version.rc',
937 ],
938 'link_settings': {
939 'libraries': [
940 '-lcomctl32.lib',
941 ],
942 },
943 'msvs_settings': {
944 'VCLinkerTool': {
945 'AdditionalOptions': [
946 "\"/manifestdependency:type='win32' "
947 "name='Microsoft.Windows.Common-Controls' "
948 "version='6.0.0.0' "
949 "processorArchitecture='*' "
950 "publicKeyToken='6595b64144ccf1df' language='*'\"",
951 ],
952 'conditions': [
953 ['buildtype == "Official" and remoting_multi_process != 0', {
954 'AdditionalOptions': [
955 "\"/MANIFESTUAC:level='requireAdministrator' "
956 "uiAccess='true'\"",
957 ],
958 }],
959 ],
960 # 2 == /SUBSYSTEM:WINDOWS
961 'SubSystem': '2',
962 },
963 },
964 }, # end of target 'remoting_desktop'
965 ],
966 }], # 'remoting_multi_process != 0'
967
968 ], # end of 'conditions' 911 ], # end of 'conditions'
969 912
970 'targets': [ 913 'targets': [
971 { 914 {
972 'target_name': 'remoting_breakpad', 915 'target_name': 'remoting_breakpad',
973 'type': 'static_library', 916 'type': 'static_library',
974 'variables': { 'enable_wexit_time_destructors': 1, }, 917 'variables': { 'enable_wexit_time_destructors': 1, },
975 'dependencies': [ 918 'dependencies': [
976 '../base/base.gyp:base', 919 '../base/base.gyp:base',
977 ], 920 ],
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
1028 'client/plugin/pepper_view.cc', 971 'client/plugin/pepper_view.cc',
1029 'client/plugin/pepper_view.h', 972 'client/plugin/pepper_view.h',
1030 'client/plugin/pepper_util.cc', 973 'client/plugin/pepper_util.cc',
1031 'client/plugin/pepper_util.h', 974 'client/plugin/pepper_util.h',
1032 'client/plugin/pepper_xmpp_proxy.cc', 975 'client/plugin/pepper_xmpp_proxy.cc',
1033 'client/plugin/pepper_xmpp_proxy.h', 976 'client/plugin/pepper_xmpp_proxy.h',
1034 ], 977 ],
1035 }, # end of target 'remoting_client_plugin' 978 }, # end of target 'remoting_client_plugin'
1036 979
1037 { 980 {
981 'target_name': 'remoting_desktop',
Sergey Ulanov 2012/10/24 20:12:01 Do we need to compile this to a separate binary fo
alexeypa (please no reviews) 2012/10/24 21:41:51 Yes. It should have "level='requireAdministrator'"
Sergey Ulanov 2012/10/24 23:46:28 Ok, maybe add TODO somewhere for now?
alexeypa (please no reviews) 2012/10/24 23:58:20 http://crbug.com/157727
982 'type': 'executable',
983 'variables': { 'enable_wexit_time_destructors': 1, },
984 'defines': [
985 'REMOTING_MULTI_PROCESS',
986 ],
987 'dependencies': [
988 'remoting_base',
989 'remoting_breakpad',
990 'remoting_host',
991 'remoting_host_logging',
992 '../base/base.gyp:base',
993 '../ipc/ipc.gyp:ipc',
994 ],
995 'sources': [
996 'host/desktop_process.cc',
997 'host/desktop_process.h',
998 'host/desktop_process_main.cc',
999 'host/desktop_session_agent.cc',
1000 'host/desktop_session_agent.h',
1001 'host/desktop_session_agent_posix.cc',
1002 'host/desktop_session_agent_win.cc',
1003 ],
1004 'conditions': [
1005 ['OS=="win"', {
1006 'dependencies': [
1007 'remoting_version_resources',
1008 ],
1009 'sources': [
1010 'host/host_ui.rc',
1011 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_desktop_version.rc',
1012 ],
1013 'link_settings': {
1014 'libraries': [
1015 '-lcomctl32.lib',
1016 ],
1017 },
1018 'msvs_settings': {
1019 'VCLinkerTool': {
1020 'AdditionalOptions': [
1021 "\"/manifestdependency:type='win32' "
1022 "name='Microsoft.Windows.Common-Controls' "
1023 "version='6.0.0.0' "
1024 "processorArchitecture='*' "
1025 "publicKeyToken='6595b64144ccf1df' language='*'\"",
1026 ],
1027 'conditions': [
1028 ['buildtype == "Official"', {
1029 'AdditionalOptions': [
1030 "\"/MANIFESTUAC:level='requireAdministrator' "
1031 "uiAccess='true'\"",
1032 ],
1033 }],
1034 ],
1035 # 2 == /SUBSYSTEM:WINDOWS
1036 'SubSystem': '2',
1037 },
1038 },
1039 }],
1040 ],
1041 }, # end of target 'remoting_desktop'
1042
1043 {
1038 'target_name': 'remoting_host_event_logger', 1044 'target_name': 'remoting_host_event_logger',
1039 'type': 'static_library', 1045 'type': 'static_library',
1040 'variables': { 'enable_wexit_time_destructors': 1, }, 1046 'variables': { 'enable_wexit_time_destructors': 1, },
1041 'dependencies': [ 1047 'dependencies': [
1042 'remoting_base', 1048 'remoting_base',
1043 ], 1049 ],
1044 'sources': [ 1050 'sources': [
1045 'host/host_event_logger.h', 1051 'host/host_event_logger.h',
1046 'host/host_event_logger_posix.cc', 1052 'host/host_event_logger_posix.cc',
1047 'host/host_event_logger_win.cc', 1053 'host/host_event_logger_win.cc',
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
1487 'host/continue_window_mac.mm', 1493 'host/continue_window_mac.mm',
1488 'host/continue_window_win.cc', 1494 'host/continue_window_win.cc',
1489 'host/desktop_environment.cc', 1495 'host/desktop_environment.cc',
1490 'host/desktop_environment.h', 1496 'host/desktop_environment.h',
1491 'host/desktop_environment_factory.cc', 1497 'host/desktop_environment_factory.cc',
1492 'host/desktop_environment_factory.h', 1498 'host/desktop_environment_factory.h',
1493 'host/desktop_resizer.h', 1499 'host/desktop_resizer.h',
1494 'host/desktop_resizer_linux.cc', 1500 'host/desktop_resizer_linux.cc',
1495 'host/desktop_resizer_win.cc', 1501 'host/desktop_resizer_win.cc',
1496 'host/desktop_resizer_mac.cc', 1502 'host/desktop_resizer_mac.cc',
1503 'host/desktop_session_connector.h',
1497 'host/differ.cc', 1504 'host/differ.cc',
1498 'host/differ.h', 1505 'host/differ.h',
1499 'host/disconnect_window.h', 1506 'host/disconnect_window.h',
1500 'host/disconnect_window_gtk.cc', 1507 'host/disconnect_window_gtk.cc',
1501 'host/disconnect_window_mac.h', 1508 'host/disconnect_window_mac.h',
1502 'host/disconnect_window_mac.mm', 1509 'host/disconnect_window_mac.mm',
1503 'host/disconnect_window_win.cc', 1510 'host/disconnect_window_win.cc',
1504 'host/dns_blackhole_checker.cc', 1511 'host/dns_blackhole_checker.cc',
1505 'host/dns_blackhole_checker.h', 1512 'host/dns_blackhole_checker.h',
1506 'host/event_executor.h', 1513 'host/event_executor.h',
(...skipping 17 matching lines...) Expand all
1524 'host/host_port_allocator.h', 1531 'host/host_port_allocator.h',
1525 'host/host_secret.cc', 1532 'host/host_secret.cc',
1526 'host/host_secret.h', 1533 'host/host_secret.h',
1527 'host/host_status_observer.h', 1534 'host/host_status_observer.h',
1528 'host/host_user_interface.cc', 1535 'host/host_user_interface.cc',
1529 'host/host_user_interface.h', 1536 'host/host_user_interface.h',
1530 'host/in_memory_host_config.cc', 1537 'host/in_memory_host_config.cc',
1531 'host/in_memory_host_config.h', 1538 'host/in_memory_host_config.h',
1532 'host/ipc_consts.cc', 1539 'host/ipc_consts.cc',
1533 'host/ipc_consts.h', 1540 'host/ipc_consts.h',
1541 'host/ipc_desktop_environment_factory.cc',
1542 'host/ipc_desktop_environment_factory.h',
1543 'host/ipc_desktop_environment.cc',
1544 'host/ipc_desktop_environment.h',
1534 'host/it2me_host_user_interface.cc', 1545 'host/it2me_host_user_interface.cc',
1535 'host/it2me_host_user_interface.h', 1546 'host/it2me_host_user_interface.h',
1536 'host/json_host_config.cc', 1547 'host/json_host_config.cc',
1537 'host/json_host_config.h', 1548 'host/json_host_config.h',
1538 'host/linux/x11_util.cc', 1549 'host/linux/x11_util.cc',
1539 'host/linux/x11_util.h', 1550 'host/linux/x11_util.h',
1540 'host/linux/x_server_clipboard.cc', 1551 'host/linux/x_server_clipboard.cc',
1541 'host/linux/x_server_clipboard.h', 1552 'host/linux/x_server_clipboard.h',
1542 'host/linux/x_server_pixel_buffer.cc', 1553 'host/linux/x_server_pixel_buffer.cc',
1543 'host/linux/x_server_pixel_buffer.h', 1554 'host/linux/x_server_pixel_buffer.h',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 'host/service_client.cc', 1590 'host/service_client.cc',
1580 'host/service_client.h', 1591 'host/service_client.h',
1581 'host/session_manager_factory.cc', 1592 'host/session_manager_factory.cc',
1582 'host/session_manager_factory.h', 1593 'host/session_manager_factory.h',
1583 'host/signaling_connector.cc', 1594 'host/signaling_connector.cc',
1584 'host/signaling_connector.h', 1595 'host/signaling_connector.h',
1585 'host/ui_strings.cc', 1596 'host/ui_strings.cc',
1586 'host/ui_strings.h', 1597 'host/ui_strings.h',
1587 'host/url_request_context.cc', 1598 'host/url_request_context.cc',
1588 'host/url_request_context.h', 1599 'host/url_request_context.h',
1600 'host/usage_stats_consent.h',
1601 'host/usage_stats_consent_win.cc',
1589 'host/user_authenticator.h', 1602 'host/user_authenticator.h',
1590 'host/user_authenticator_linux.cc', 1603 'host/user_authenticator_linux.cc',
1591 'host/user_authenticator_mac.cc', 1604 'host/user_authenticator_mac.cc',
1592 'host/user_authenticator_win.cc', 1605 'host/user_authenticator_win.cc',
1593 'host/video_frame_capturer.h', 1606 'host/video_frame_capturer.h',
1594 'host/video_frame_capturer_fake.cc', 1607 'host/video_frame_capturer_fake.cc',
1595 'host/video_frame_capturer_fake.h', 1608 'host/video_frame_capturer_fake.h',
1596 'host/video_frame_capturer_helper.cc', 1609 'host/video_frame_capturer_helper.cc',
1597 'host/video_frame_capturer_helper.h', 1610 'host/video_frame_capturer_helper.h',
1598 'host/video_frame_capturer_linux.cc', 1611 'host/video_frame_capturer_linux.cc',
1599 'host/video_frame_capturer_mac.mm', 1612 'host/video_frame_capturer_mac.mm',
1600 'host/video_frame_capturer_win.cc', 1613 'host/video_frame_capturer_win.cc',
1601 'host/vlog_net_log.cc', 1614 'host/vlog_net_log.cc',
1602 'host/vlog_net_log.h', 1615 'host/vlog_net_log.h',
1603 'host/win/desktop.cc', 1616 'host/win/desktop.cc',
1604 'host/win/desktop.h', 1617 'host/win/desktop.h',
1618 'host/win/launch_process_with_token.cc',
1619 'host/win/launch_process_with_token.h',
1605 'host/win/omaha.cc', 1620 'host/win/omaha.cc',
1606 'host/win/omaha.h', 1621 'host/win/omaha.h',
1607 'host/win/scoped_thread_desktop.cc', 1622 'host/win/scoped_thread_desktop.cc',
1608 'host/win/scoped_thread_desktop.h', 1623 'host/win/scoped_thread_desktop.h',
1609 'host/win/session_desktop_environment_factory.cc', 1624 'host/win/session_desktop_environment_factory.cc',
1610 'host/win/session_desktop_environment_factory.h', 1625 'host/win/session_desktop_environment_factory.h',
1611 'host/win/session_event_executor.cc', 1626 'host/win/session_event_executor.cc',
1612 'host/win/session_event_executor.h', 1627 'host/win/session_event_executor.h',
1613 ], 1628 ],
1614 'conditions': [ 1629 'conditions': [
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1751 'host/config_file_watcher.h', 1766 'host/config_file_watcher.h',
1752 'host/curtain_mode.h', 1767 'host/curtain_mode.h',
1753 'host/curtaining_host_observer.h', 1768 'host/curtaining_host_observer.h',
1754 'host/curtaining_host_observer.cc', 1769 'host/curtaining_host_observer.cc',
1755 'host/curtain_mode_linux.cc', 1770 'host/curtain_mode_linux.cc',
1756 'host/curtain_mode_mac.cc', 1771 'host/curtain_mode_mac.cc',
1757 'host/curtain_mode_win.cc', 1772 'host/curtain_mode_win.cc',
1758 'host/posix/signal_handler.cc', 1773 'host/posix/signal_handler.cc',
1759 'host/posix/signal_handler.h', 1774 'host/posix/signal_handler.h',
1760 'host/remoting_me2me_host.cc', 1775 'host/remoting_me2me_host.cc',
1761 'host/usage_stats_consent.h',
1762 'host/usage_stats_consent_win.cc',
1763 ], 1776 ],
1764 'conditions': [ 1777 'conditions': [
1765 ['os_posix != 1', { 1778 ['os_posix != 1', {
1766 'sources/': [ 1779 'sources/': [
1767 ['exclude', '^host/posix/'], 1780 ['exclude', '^host/posix/'],
1768 ], 1781 ],
1769 }], 1782 }],
1770 ['OS=="mac"', { 1783 ['OS=="mac"', {
1771 'mac_bundle': 1, 1784 'mac_bundle': 1,
1772 'variables': { 1785 'variables': {
(...skipping 14 matching lines...) Expand all
1787 ], 1800 ],
1788 }], 1801 }],
1789 ['OS=="win"', { 1802 ['OS=="win"', {
1790 'product_name': 'remoting_host', 1803 'product_name': 'remoting_host',
1791 'dependencies': [ 1804 'dependencies': [
1792 'remoting_version_resources', 1805 'remoting_version_resources',
1793 ], 1806 ],
1794 'sources': [ 1807 'sources': [
1795 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/remoting_host_messages.rc' , 1808 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/remoting_host_messages.rc' ,
1796 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_host_me2me_version.rc' , 1809 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_host_me2me_version.rc' ,
1797 'host/desktop_session_connector.h',
1798 'host/host_ui.rc', 1810 'host/host_ui.rc',
1799 'host/ipc_desktop_environment_factory.cc',
1800 'host/ipc_desktop_environment_factory.h',
1801 'host/ipc_desktop_environment.cc',
1802 'host/ipc_desktop_environment.h',
1803 ], 1811 ],
1804 'link_settings': { 1812 'link_settings': {
1805 'libraries': [ 1813 'libraries': [
1806 '-lcomctl32.lib', 1814 '-lcomctl32.lib',
1807 ], 1815 ],
1808 }, 1816 },
1809 'msvs_settings': { 1817 'msvs_settings': {
1810 'VCLinkerTool': { 1818 'VCLinkerTool': {
1811 'AdditionalOptions': [ 1819 'AdditionalOptions': [
1812 "\"/manifestdependency:type='win32' " 1820 "\"/manifestdependency:type='win32' "
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
2073 'host/branding.cc', 2081 'host/branding.cc',
2074 'host/branding.h', 2082 'host/branding.h',
2075 'host/chromoting_host_context_unittest.cc', 2083 'host/chromoting_host_context_unittest.cc',
2076 'host/chromoting_host_unittest.cc', 2084 'host/chromoting_host_unittest.cc',
2077 'host/client_session_unittest.cc', 2085 'host/client_session_unittest.cc',
2078 'host/config_file_watcher.cc', 2086 'host/config_file_watcher.cc',
2079 'host/config_file_watcher.h', 2087 'host/config_file_watcher.h',
2080 'host/daemon_process.cc', 2088 'host/daemon_process.cc',
2081 'host/daemon_process.h', 2089 'host/daemon_process.h',
2082 'host/daemon_process_unittest.cc', 2090 'host/daemon_process_unittest.cc',
2091 'host/desktop_process.cc',
2092 'host/desktop_process.h',
2093 'host/desktop_process_unittest.cc',
2083 'host/desktop_session.cc', 2094 'host/desktop_session.cc',
2084 'host/desktop_session.h', 2095 'host/desktop_session.h',
2096 'host/desktop_session_agent.cc',
2097 'host/desktop_session_agent.h',
2098 'host/desktop_session_agent_posix.cc',
2099 'host/desktop_session_agent_win.cc',
2085 'host/differ_block_unittest.cc', 2100 'host/differ_block_unittest.cc',
2086 'host/differ_unittest.cc', 2101 'host/differ_unittest.cc',
2087 'host/heartbeat_sender_unittest.cc', 2102 'host/heartbeat_sender_unittest.cc',
2088 'host/host_key_pair_unittest.cc', 2103 'host/host_key_pair_unittest.cc',
2089 'host/host_mock_objects.cc', 2104 'host/host_mock_objects.cc',
2090 'host/host_mock_objects.h', 2105 'host/host_mock_objects.h',
2091 'host/json_host_config_unittest.cc', 2106 'host/json_host_config_unittest.cc',
2092 'host/linux/x_server_clipboard_unittest.cc', 2107 'host/linux/x_server_clipboard_unittest.cc',
2093 'host/log_to_server_unittest.cc', 2108 'host/log_to_server_unittest.cc',
2094 'host/pin_hash_unittest.cc', 2109 'host/pin_hash_unittest.cc',
2095 'host/policy_hack/fake_policy_watcher.cc', 2110 'host/policy_hack/fake_policy_watcher.cc',
2096 'host/policy_hack/fake_policy_watcher.h', 2111 'host/policy_hack/fake_policy_watcher.h',
2097 'host/policy_hack/mock_policy_callback.cc', 2112 'host/policy_hack/mock_policy_callback.cc',
2098 'host/policy_hack/mock_policy_callback.h', 2113 'host/policy_hack/mock_policy_callback.h',
2099 'host/policy_hack/policy_watcher_unittest.cc', 2114 'host/policy_hack/policy_watcher_unittest.cc',
2100 'host/register_support_host_request_unittest.cc', 2115 'host/register_support_host_request_unittest.cc',
2101 'host/remote_input_filter_unittest.cc', 2116 'host/remote_input_filter_unittest.cc',
2102 'host/resizing_host_observer_unittest.cc', 2117 'host/resizing_host_observer_unittest.cc',
2103 'host/screen_recorder_unittest.cc', 2118 'host/screen_recorder_unittest.cc',
2104 'host/server_log_entry_unittest.cc', 2119 'host/server_log_entry_unittest.cc',
2105 'host/setup/oauth_helper_unittest.cc', 2120 'host/setup/oauth_helper_unittest.cc',
2106 'host/setup/pin_validator_unittest.cc', 2121 'host/setup/pin_validator_unittest.cc',
2107 'host/test_key_pair.h', 2122 'host/test_key_pair.h',
2108 'host/video_frame_capturer_helper_unittest.cc', 2123 'host/video_frame_capturer_helper_unittest.cc',
2109 'host/video_frame_capturer_mac_unittest.cc', 2124 'host/video_frame_capturer_mac_unittest.cc',
2110 'host/video_frame_capturer_unittest.cc', 2125 'host/video_frame_capturer_unittest.cc',
2111 'host/win/launch_process_with_token.cc',
2112 'host/win/launch_process_with_token.h',
2113 'host/win/worker_process_launcher.cc', 2126 'host/win/worker_process_launcher.cc',
2114 'host/win/worker_process_launcher.h', 2127 'host/win/worker_process_launcher.h',
2115 'host/win/worker_process_launcher_unittest.cc', 2128 'host/win/worker_process_launcher_unittest.cc',
2116 'jingle_glue/chromium_socket_factory_unittest.cc', 2129 'jingle_glue/chromium_socket_factory_unittest.cc',
2117 'jingle_glue/fake_signal_strategy.cc', 2130 'jingle_glue/fake_signal_strategy.cc',
2118 'jingle_glue/fake_signal_strategy.h', 2131 'jingle_glue/fake_signal_strategy.h',
2119 'jingle_glue/iq_sender_unittest.cc', 2132 'jingle_glue/iq_sender_unittest.cc',
2120 'jingle_glue/mock_objects.cc', 2133 'jingle_glue/mock_objects.cc',
2121 'jingle_glue/mock_objects.h', 2134 'jingle_glue/mock_objects.h',
2122 'protocol/authenticator_test_base.cc', 2135 'protocol/authenticator_test_base.cc',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
2209 '../base/allocator/allocator.gyp:allocator', 2222 '../base/allocator/allocator.gyp:allocator',
2210 ], 2223 ],
2211 }, 2224 },
2212 ], 2225 ],
2213 ], 2226 ],
2214 }], # end of 'toolkit_uses_gtk == 1' 2227 }], # end of 'toolkit_uses_gtk == 1'
2215 ], # end of 'conditions' 2228 ], # end of 'conditions'
2216 }, # end of target 'remoting_unittests' 2229 }, # end of target 'remoting_unittests'
2217 ], # end of targets 2230 ], # end of targets
2218 } 2231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698