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

Side by Side Diff: remoting/remoting.gyp

Issue 11090063: [Chromoting] Add a simple Windows app that registers and starts a host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review. 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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 '-e', 'DAEMON_CONTROLLER_CLSID="<(daemon_controller_clsid)"', 524 '-e', 'DAEMON_CONTROLLER_CLSID="<(daemon_controller_clsid)"',
525 '<(RULE_INPUT_PATH)', 525 '<(RULE_INPUT_PATH)',
526 '<@(_outputs)', 526 '<@(_outputs)',
527 ], 527 ],
528 'process_outputs_as_sources': 1, 528 'process_outputs_as_sources': 1,
529 'message': 'Generating <@(_outputs)' 529 'message': 'Generating <@(_outputs)'
530 }, 530 },
531 ], 531 ],
532 }, # end of target 'remoting_elevated_controller' 532 }, # end of target 'remoting_elevated_controller'
533 { 533 {
534 'target_name': 'remoting_configurer',
535 'type': 'executable',
536 'dependencies': [
537 '../base/base.gyp:base',
538 '../crypto/crypto.gyp:crypto',
539 'remoting_host',
540 'remoting_host_setup_base',
541 ],
542 'sources': [
543 'host/branding.cc',
544 'host/setup/win/host_configurer.cc',
545 'host/setup/win/host_configurer.rc',
546 'host/setup/win/host_configurer_window.cc',
547 'host/setup/win/host_configurer_window.h',
548 'host/setup/win/host_configurer_resource.h',
549 'host/setup/win/load_string_from_resource.cc',
550 'host/setup/win/load_string_from_resource.h',
551 'host/setup/win/start_host_window.cc',
552 'host/setup/win/start_host_window.h',
553 ],
554 'msvs_settings': {
555 'VCLinkerTool': {
556 'AdditionalOptions': [
557 "\"/manifestdependency:type='win32' "
558 "name='Microsoft.Windows.Common-Controls' "
559 "version='6.0.0.0' "
560 "processorArchitecture='*' "
561 "publicKeyToken='6595b64144ccf1df' language='*'\"",
562 ],
563 # 2 == /SUBSYSTEM:WINDOWS
564 'SubSystem': '2',
565 },
566 },
567 }, # end of target 'remoting_configurer'
568 {
534 'target_name': 'remoting_controller', 569 'target_name': 'remoting_controller',
535 'type': 'executable', 570 'type': 'executable',
536 'variables': { 'enable_wexit_time_destructors': 1, }, 571 'variables': { 'enable_wexit_time_destructors': 1, },
537 'defines' : [ 572 'defines' : [
538 '_ATL_APARTMENT_THREADED', 573 '_ATL_APARTMENT_THREADED',
539 '_ATL_NO_AUTOMATIC_NAMESPACE', 574 '_ATL_NO_AUTOMATIC_NAMESPACE',
540 '_ATL_CSTRING_EXPLICIT_CONSTRUCTORS', 575 '_ATL_CSTRING_EXPLICIT_CONSTRUCTORS',
541 'STRICT', 576 'STRICT',
542 'DAEMON_CONTROLLER_CLSID="{<(daemon_controller_clsid)}"', 577 'DAEMON_CONTROLLER_CLSID="{<(daemon_controller_clsid)}"',
543 ], 578 ],
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 'host/setup/daemon_controller.h', 1081 'host/setup/daemon_controller.h',
1047 'host/setup/daemon_controller_linux.cc', 1082 'host/setup/daemon_controller_linux.cc',
1048 'host/setup/daemon_controller_mac.cc', 1083 'host/setup/daemon_controller_mac.cc',
1049 'host/setup/daemon_controller_win.cc', 1084 'host/setup/daemon_controller_win.cc',
1050 'host/setup/daemon_installer_win.cc', 1085 'host/setup/daemon_installer_win.cc',
1051 'host/setup/daemon_installer_win.h', 1086 'host/setup/daemon_installer_win.h',
1052 'host/setup/host_starter.cc', 1087 'host/setup/host_starter.cc',
1053 'host/setup/host_starter.h', 1088 'host/setup/host_starter.h',
1054 'host/setup/oauth_helper.cc', 1089 'host/setup/oauth_helper.cc',
1055 'host/setup/oauth_helper.h', 1090 'host/setup/oauth_helper.h',
1091 'host/setup/pin_validator.cc',
1092 'host/setup/pin_validator.h',
1056 'host/setup/win/auth_code_getter.cc', 1093 'host/setup/win/auth_code_getter.cc',
1057 'host/setup/win/auth_code_getter.h', 1094 'host/setup/win/auth_code_getter.h',
1058 ], 1095 ],
1059 'conditions': [ 1096 'conditions': [
1060 ['OS=="win"', { 1097 ['OS=="win"', {
1061 'dependencies': [ 1098 'dependencies': [
1062 '../google_update/google_update.gyp:google_update', 1099 '../google_update/google_update.gyp:google_update',
1063 'remoting_elevated_controller', 1100 'remoting_elevated_controller',
1064 ], 1101 ],
1065 }], 1102 }],
(...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
2027 'host/policy_hack/fake_policy_watcher.h', 2064 'host/policy_hack/fake_policy_watcher.h',
2028 'host/policy_hack/mock_policy_callback.cc', 2065 'host/policy_hack/mock_policy_callback.cc',
2029 'host/policy_hack/mock_policy_callback.h', 2066 'host/policy_hack/mock_policy_callback.h',
2030 'host/policy_hack/policy_watcher_unittest.cc', 2067 'host/policy_hack/policy_watcher_unittest.cc',
2031 'host/register_support_host_request_unittest.cc', 2068 'host/register_support_host_request_unittest.cc',
2032 'host/remote_input_filter_unittest.cc', 2069 'host/remote_input_filter_unittest.cc',
2033 'host/resizing_host_observer_unittest.cc', 2070 'host/resizing_host_observer_unittest.cc',
2034 'host/screen_recorder_unittest.cc', 2071 'host/screen_recorder_unittest.cc',
2035 'host/server_log_entry_unittest.cc', 2072 'host/server_log_entry_unittest.cc',
2036 'host/setup/oauth_helper_unittest.cc', 2073 'host/setup/oauth_helper_unittest.cc',
2074 'host/setup/pin_validator_unittest.cc',
2037 'host/test_key_pair.h', 2075 'host/test_key_pair.h',
2038 'host/video_frame_capturer_helper_unittest.cc', 2076 'host/video_frame_capturer_helper_unittest.cc',
2039 'host/video_frame_capturer_mac_unittest.cc', 2077 'host/video_frame_capturer_mac_unittest.cc',
2040 'host/video_frame_capturer_unittest.cc', 2078 'host/video_frame_capturer_unittest.cc',
2041 'host/win/worker_process_launcher.cc', 2079 'host/win/worker_process_launcher.cc',
2042 'host/win/worker_process_launcher.h', 2080 'host/win/worker_process_launcher.h',
2043 'host/win/worker_process_launcher_unittest.cc', 2081 'host/win/worker_process_launcher_unittest.cc',
2044 'jingle_glue/chromium_socket_factory_unittest.cc', 2082 'jingle_glue/chromium_socket_factory_unittest.cc',
2045 'jingle_glue/fake_signal_strategy.cc', 2083 'jingle_glue/fake_signal_strategy.cc',
2046 'jingle_glue/fake_signal_strategy.h', 2084 'jingle_glue/fake_signal_strategy.h',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
2140 '../base/allocator/allocator.gyp:allocator', 2178 '../base/allocator/allocator.gyp:allocator',
2141 ], 2179 ],
2142 }, 2180 },
2143 ], 2181 ],
2144 ], 2182 ],
2145 }], # end of 'toolkit_uses_gtk == 1' 2183 }], # end of 'toolkit_uses_gtk == 1'
2146 ], # end of 'conditions' 2184 ], # end of 'conditions'
2147 }, # end of target 'remoting_unittests' 2185 }, # end of target 'remoting_unittests'
2148 ], # end of targets 2186 ], # end of targets
2149 } 2187 }
OLDNEW
« remoting/host/setup/host_starter.cc ('K') | « remoting/host/setup/win/start_host_window.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698