Chromium Code Reviews| 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 | 10 |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 520 '-e', 'DAEMON_CONTROLLER_CLSID="<(daemon_controller_clsid)"', | 520 '-e', 'DAEMON_CONTROLLER_CLSID="<(daemon_controller_clsid)"', |
| 521 '<(RULE_INPUT_PATH)', | 521 '<(RULE_INPUT_PATH)', |
| 522 '<@(_outputs)', | 522 '<@(_outputs)', |
| 523 ], | 523 ], |
| 524 'process_outputs_as_sources': 1, | 524 'process_outputs_as_sources': 1, |
| 525 'message': 'Generating <@(_outputs)' | 525 'message': 'Generating <@(_outputs)' |
| 526 }, | 526 }, |
| 527 ], | 527 ], |
| 528 }, # end of target 'remoting_elevated_controller' | 528 }, # end of target 'remoting_elevated_controller' |
| 529 { | 529 { |
| 530 'target_name': 'remoting_configurer', | |
| 531 'type': 'executable', | |
| 532 'dependencies': [ | |
| 533 '../base/base.gyp:base', | |
| 534 '../crypto/crypto.gyp:crypto', | |
| 535 'remoting_host', | |
| 536 'remoting_host_setup_base', | |
| 537 ], | |
| 538 'sources': [ | |
| 539 'host/branding.cc', | |
| 540 'host/setup/win/host_configurer.cc', | |
| 541 'host/setup/win/host_configurer.rc', | |
| 542 'host/setup/win/host_configurer_window.cc', | |
| 543 'host/setup/win/host_configurer_window.h', | |
| 544 'host/setup/win/host_configurer_resource.h', | |
| 545 'host/setup/win/start_host_window.cc', | |
| 546 'host/setup/win/start_host_window.h', | |
| 547 ], | |
| 548 'msvs_settings': { | |
| 549 'VCLinkerTool': { | |
| 550 'AdditionalOptions': [ | |
| 551 "\"/manifestdependency:type='win32' " | |
|
alexeypa (please no reviews)
2012/10/11 16:57:52
InitCommonControlsEx() has to be called to make th
| |
| 552 "name='Microsoft.Windows.Common-Controls' " | |
| 553 "version='6.0.0.0' " | |
| 554 "processorArchitecture='*' " | |
| 555 "publicKeyToken='6595b64144ccf1df' language='*'\"", | |
| 556 ], | |
| 557 # 2 == /SUBSYSTEM:WINDOWS | |
| 558 'SubSystem': '2', | |
| 559 }, | |
| 560 }, | |
| 561 }, # end of target 'remoting_configurer' | |
| 562 { | |
| 530 'target_name': 'remoting_controller', | 563 'target_name': 'remoting_controller', |
| 531 'type': 'executable', | 564 'type': 'executable', |
| 532 'variables': { 'enable_wexit_time_destructors': 1, }, | 565 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 533 'defines' : [ | 566 'defines' : [ |
| 534 '_ATL_APARTMENT_THREADED', | 567 '_ATL_APARTMENT_THREADED', |
| 535 '_ATL_NO_AUTOMATIC_NAMESPACE', | 568 '_ATL_NO_AUTOMATIC_NAMESPACE', |
| 536 '_ATL_CSTRING_EXPLICIT_CONSTRUCTORS', | 569 '_ATL_CSTRING_EXPLICIT_CONSTRUCTORS', |
| 537 'STRICT', | 570 'STRICT', |
| 538 'DAEMON_CONTROLLER_CLSID="{<(daemon_controller_clsid)}"', | 571 'DAEMON_CONTROLLER_CLSID="{<(daemon_controller_clsid)}"', |
| 539 ], | 572 ], |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1039 'host/setup/daemon_controller.h', | 1072 'host/setup/daemon_controller.h', |
| 1040 'host/setup/daemon_controller_linux.cc', | 1073 'host/setup/daemon_controller_linux.cc', |
| 1041 'host/setup/daemon_controller_mac.cc', | 1074 'host/setup/daemon_controller_mac.cc', |
| 1042 'host/setup/daemon_controller_win.cc', | 1075 'host/setup/daemon_controller_win.cc', |
| 1043 'host/setup/daemon_installer_win.cc', | 1076 'host/setup/daemon_installer_win.cc', |
| 1044 'host/setup/daemon_installer_win.h', | 1077 'host/setup/daemon_installer_win.h', |
| 1045 'host/setup/host_starter.cc', | 1078 'host/setup/host_starter.cc', |
| 1046 'host/setup/host_starter.h', | 1079 'host/setup/host_starter.h', |
| 1047 'host/setup/oauth_helper.cc', | 1080 'host/setup/oauth_helper.cc', |
| 1048 'host/setup/oauth_helper.h', | 1081 'host/setup/oauth_helper.h', |
| 1082 'host/setup/pin_validator.cc', | |
| 1083 'host/setup/pin_validator.h', | |
| 1049 ], | 1084 ], |
| 1050 'conditions': [ | 1085 'conditions': [ |
| 1051 ['OS=="win"', { | 1086 ['OS=="win"', { |
| 1052 'dependencies': [ | 1087 'dependencies': [ |
| 1053 '../google_update/google_update.gyp:google_update', | 1088 '../google_update/google_update.gyp:google_update', |
| 1054 'remoting_elevated_controller', | 1089 'remoting_elevated_controller', |
| 1055 ], | 1090 ], |
| 1056 }], | 1091 }], |
| 1057 ], | 1092 ], |
| 1058 }, # end of target 'remoting_breakpad' | 1093 }, # end of target 'remoting_breakpad' |
| (...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1933 'host/policy_hack/fake_policy_watcher.h', | 1968 'host/policy_hack/fake_policy_watcher.h', |
| 1934 'host/policy_hack/mock_policy_callback.cc', | 1969 'host/policy_hack/mock_policy_callback.cc', |
| 1935 'host/policy_hack/mock_policy_callback.h', | 1970 'host/policy_hack/mock_policy_callback.h', |
| 1936 'host/policy_hack/policy_watcher_unittest.cc', | 1971 'host/policy_hack/policy_watcher_unittest.cc', |
| 1937 'host/register_support_host_request_unittest.cc', | 1972 'host/register_support_host_request_unittest.cc', |
| 1938 'host/remote_input_filter_unittest.cc', | 1973 'host/remote_input_filter_unittest.cc', |
| 1939 'host/resizing_host_observer_unittest.cc', | 1974 'host/resizing_host_observer_unittest.cc', |
| 1940 'host/screen_recorder_unittest.cc', | 1975 'host/screen_recorder_unittest.cc', |
| 1941 'host/server_log_entry_unittest.cc', | 1976 'host/server_log_entry_unittest.cc', |
| 1942 'host/setup/oauth_helper_unittest.cc', | 1977 'host/setup/oauth_helper_unittest.cc', |
| 1978 'host/setup/pin_validator_unittest.cc', | |
| 1943 'host/test_key_pair.h', | 1979 'host/test_key_pair.h', |
| 1944 'host/video_frame_capturer_helper_unittest.cc', | 1980 'host/video_frame_capturer_helper_unittest.cc', |
| 1945 'host/video_frame_capturer_mac_unittest.cc', | 1981 'host/video_frame_capturer_mac_unittest.cc', |
| 1946 'host/video_frame_capturer_unittest.cc', | 1982 'host/video_frame_capturer_unittest.cc', |
| 1947 'jingle_glue/chromium_socket_factory_unittest.cc', | 1983 'jingle_glue/chromium_socket_factory_unittest.cc', |
| 1948 'jingle_glue/fake_signal_strategy.cc', | 1984 'jingle_glue/fake_signal_strategy.cc', |
| 1949 'jingle_glue/fake_signal_strategy.h', | 1985 'jingle_glue/fake_signal_strategy.h', |
| 1950 'jingle_glue/iq_sender_unittest.cc', | 1986 'jingle_glue/iq_sender_unittest.cc', |
| 1951 'jingle_glue/mock_objects.cc', | 1987 'jingle_glue/mock_objects.cc', |
| 1952 'jingle_glue/mock_objects.h', | 1988 'jingle_glue/mock_objects.h', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2013 '../base/allocator/allocator.gyp:allocator', | 2049 '../base/allocator/allocator.gyp:allocator', |
| 2014 ], | 2050 ], |
| 2015 }, | 2051 }, |
| 2016 ], | 2052 ], |
| 2017 ], | 2053 ], |
| 2018 }], | 2054 }], |
| 2019 ], # end of 'conditions' | 2055 ], # end of 'conditions' |
| 2020 }, # end of target 'remoting_unittests' | 2056 }, # end of target 'remoting_unittests' |
| 2021 ], # end of targets | 2057 ], # end of targets |
| 2022 } | 2058 } |
| OLD | NEW |