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

Side by Side Diff: remoting/remoting.gyp

Issue 10384127: Chromoting: the Me2me host now presents a notification on the console allowing a user to disconnect… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 # Use consistent strings across all platforms. Note that the plugin name 10 # Use consistent strings across all platforms. Note that the plugin name
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 'product_prefix': '<(host_plugin_prefix)', 854 'product_prefix': '<(host_plugin_prefix)',
855 'dependencies': [ 855 'dependencies': [
856 'remoting_base', 856 'remoting_base',
857 'remoting_host', 857 'remoting_host',
858 'remoting_jingle_glue', 858 'remoting_jingle_glue',
859 '../third_party/npapi/npapi.gyp:npapi', 859 '../third_party/npapi/npapi.gyp:npapi',
860 ], 860 ],
861 'sources': [ 861 'sources': [
862 'host/branding.cc', 862 'host/branding.cc',
863 'host/branding.h', 863 'host/branding.h',
864 'host/host_ui_resource.h',
865 'host/host_user_interface.cc',
866 'host/host_user_interface.h',
864 'host/it2me_host_user_interface.cc', 867 'host/it2me_host_user_interface.cc',
865 'host/it2me_host_user_interface.h', 868 'host/it2me_host_user_interface.h',
866 'host/plugin/daemon_controller.h', 869 'host/plugin/daemon_controller.h',
867 'host/plugin/daemon_controller_linux.cc', 870 'host/plugin/daemon_controller_linux.cc',
868 'host/plugin/daemon_controller_mac.cc', 871 'host/plugin/daemon_controller_mac.cc',
869 'host/plugin/daemon_controller_win.cc', 872 'host/plugin/daemon_controller_win.cc',
870 'host/plugin/daemon_installer_win.cc', 873 'host/plugin/daemon_installer_win.cc',
871 'host/plugin/daemon_installer_win.h', 874 'host/plugin/daemon_installer_win.h',
872 'host/plugin/host_log_handler.cc', 875 'host/plugin/host_log_handler.cc',
873 'host/plugin/host_log_handler.h', 876 'host/plugin/host_log_handler.h',
874 'host/plugin/host_plugin.cc', 877 'host/plugin/host_plugin.cc',
875 'host/plugin/host_plugin_resource.h',
876 'host/plugin/host_plugin_utils.cc', 878 'host/plugin/host_plugin_utils.cc',
877 'host/plugin/host_plugin_utils.h', 879 'host/plugin/host_plugin_utils.h',
878 'host/plugin/host_script_object.cc', 880 'host/plugin/host_script_object.cc',
879 'host/plugin/host_script_object.h', 881 'host/plugin/host_script_object.h',
880 ], 882 ],
881 'conditions': [ 883 'conditions': [
882 ['OS=="mac"', { 884 ['OS=="mac"', {
883 'mac_bundle': 1, 885 'mac_bundle': 1,
884 'xcode_settings': { 886 'xcode_settings': {
885 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', 887 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)',
(...skipping 30 matching lines...) Expand all
916 'dependencies': [ 918 'dependencies': [
917 '../google_update/google_update.gyp:google_update', 919 '../google_update/google_update.gyp:google_update',
918 '../ipc/ipc.gyp:ipc', 920 '../ipc/ipc.gyp:ipc',
919 'remoting_elevated_controller', 921 'remoting_elevated_controller',
920 'remoting_version_resources', 922 'remoting_version_resources',
921 ], 923 ],
922 'include_dirs': [ 924 'include_dirs': [
923 '<(INTERMEDIATE_DIR)', 925 '<(INTERMEDIATE_DIR)',
924 ], 926 ],
925 'sources': [ 927 'sources': [
928 'host/host_ui.rc',
926 'host/plugin/host_plugin.def', 929 'host/plugin/host_plugin.def',
927 'host/plugin/host_plugin.rc',
928 '<(SHARED_INTERMEDIATE_DIR)/remoting/host_plugin_version.rc' 930 '<(SHARED_INTERMEDIATE_DIR)/remoting/host_plugin_version.rc'
929 ], 931 ],
930 }], 932 }],
931 ], 933 ],
932 }, # end of target 'remoting_host_plugin' 934 }, # end of target 'remoting_host_plugin'
933 935
934 { 936 {
935 'target_name': 'remoting_webapp', 937 'target_name': 'remoting_webapp',
936 'type': 'none', 938 'type': 'none',
937 'dependencies': [ 939 'dependencies': [
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
1299 ], 1301 ],
1300 'sources': [ 1302 'sources': [
1301 'host/continue_window.h', 1303 'host/continue_window.h',
1302 'host/continue_window_mac.mm', 1304 'host/continue_window_mac.mm',
1303 'host/continue_window_linux.cc', 1305 'host/continue_window_linux.cc',
1304 'host/continue_window_win.cc', 1306 'host/continue_window_win.cc',
1305 'host/disconnect_window_linux.cc', 1307 'host/disconnect_window_linux.cc',
1306 'host/disconnect_window_mac.h', 1308 'host/disconnect_window_mac.h',
1307 'host/disconnect_window_mac.mm', 1309 'host/disconnect_window_mac.mm',
1308 'host/disconnect_window_win.cc', 1310 'host/disconnect_window_win.cc',
1311 'host/host_user_interface.cc',
1312 'host/host_user_interface.h',
1309 'host/it2me_host_user_interface.cc', 1313 'host/it2me_host_user_interface.cc',
1310 'host/it2me_host_user_interface.h', 1314 'host/it2me_host_user_interface.h',
1311 'host/simple_host_process.cc', 1315 'host/simple_host_process.cc',
1312 ], 1316 ],
1313 'conditions': [ 1317 'conditions': [
1314 ['OS=="win"', { 1318 ['OS=="win"', {
1315 'dependencies': [ 1319 'dependencies': [
1316 '../ipc/ipc.gyp:ipc' 1320 '../ipc/ipc.gyp:ipc'
1317 ], 1321 ],
1318 }], 1322 }],
1319 ], 1323 ],
1320 }, # end of target 'remoting_simple_host' 1324 }, # end of target 'remoting_simple_host'
1321 1325
1322 { 1326 {
1323 'target_name': 'remoting_me2me_host', 1327 'target_name': 'remoting_me2me_host',
1324 'type': 'executable', 1328 'type': 'executable',
1325 'variables': { 'enable_wexit_time_destructors': 1, }, 1329 'variables': { 'enable_wexit_time_destructors': 1, },
1326 'dependencies': [ 1330 'dependencies': [
1327 'remoting_base', 1331 'remoting_base',
1328 'remoting_host', 1332 'remoting_host',
1329 'remoting_jingle_glue', 1333 'remoting_jingle_glue',
1330 '../base/base.gyp:base', 1334 '../base/base.gyp:base',
1331 '../base/base.gyp:base_i18n', 1335 '../base/base.gyp:base_i18n',
1332 '../media/media.gyp:media', 1336 '../media/media.gyp:media',
1333 ], 1337 ],
1334 'sources': [ 1338 'sources': [
1335 'host/branding.cc', 1339 'host/branding.cc',
1336 'host/branding.h', 1340 'host/branding.h',
1337 'host/host_event_logger.h', 1341 'host/host_event_logger.h',
1342 'host/host_user_interface.cc',
1343 'host/host_user_interface.h',
1338 'host/sighup_listener_mac.cc', 1344 'host/sighup_listener_mac.cc',
1339 'host/sighup_listener_mac.h', 1345 'host/sighup_listener_mac.h',
1340 'host/remoting_me2me_host.cc', 1346 'host/remoting_me2me_host.cc',
1341 ], 1347 ],
1342 'conditions': [ 1348 'conditions': [
1343 ['os_posix==1', { 1349 ['os_posix==1', {
1344 'sources': [ 1350 'sources': [
1345 'host/host_event_logger_posix.cc', 1351 'host/host_event_logger_posix.cc',
1346 ], 1352 ],
1347 }], 1353 }],
(...skipping 22 matching lines...) Expand all
1370 'host/remoting_me2me_host-Info.plist', 1376 'host/remoting_me2me_host-Info.plist',
1371 ], 1377 ],
1372 }], 1378 }],
1373 ['OS=="win"', { 1379 ['OS=="win"', {
1374 'dependencies': [ 1380 'dependencies': [
1375 '../ipc/ipc.gyp:ipc', 1381 '../ipc/ipc.gyp:ipc',
1376 'remoting_version_resources', 1382 'remoting_version_resources',
1377 ], 1383 ],
1378 'sources': [ 1384 'sources': [
1379 'host/host_event_logger_win.cc', 1385 'host/host_event_logger_win.cc',
1386 'host/host_ui.rc',
1380 'host/remoting_host_messages.mc', 1387 'host/remoting_host_messages.mc',
1381 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_me2me_host_version.rc' 1388 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_me2me_host_version.rc'
1382 ], 1389 ],
1383 'include_dirs': [ 1390 'include_dirs': [
1384 '<(INTERMEDIATE_DIR)', 1391 '<(INTERMEDIATE_DIR)',
1385 ], 1392 ],
1386 # Rule to run the message compiler. 1393 # Rule to run the message compiler.
1387 'rules': [ 1394 'rules': [
1388 { 1395 {
1389 'rule_name': 'message_compiler', 1396 'rule_name': 'message_compiler',
1390 'extension': 'mc', 1397 'extension': 'mc',
1391 'inputs': [ ], 1398 'inputs': [ ],
1392 'outputs': [ 1399 'outputs': [
1393 '<(INTERMEDIATE_DIR)/remoting_host_messages.h', 1400 '<(INTERMEDIATE_DIR)/remoting_host_messages.h',
1394 '<(INTERMEDIATE_DIR)/remoting_host_messages.rc', 1401 '<(INTERMEDIATE_DIR)/remoting_host_messages.rc',
1395 ], 1402 ],
1396 'msvs_cygwin_shell': 0, 1403 'msvs_cygwin_shell': 0,
1397 'msvs_quote_cmd': 0, 1404 'msvs_quote_cmd': 0,
1398 'action': [ 1405 'action': [
1399 'mc.exe -h <(INTERMEDIATE_DIR) -r <(INTERMEDIATE_DIR) <(RULE_INP UT_PATH)', 1406 'mc.exe -h <(INTERMEDIATE_DIR) -r <(INTERMEDIATE_DIR) <(RULE_INP UT_PATH)',
1400 ], 1407 ],
1401 'process_outputs_as_sources': 1, 1408 'process_outputs_as_sources': 1,
1402 'message': 'Running message compiler on <(RULE_INPUT_PATH).', 1409 'message': 'Running message compiler on <(RULE_INPUT_PATH).',
1403 }, 1410 },
1404 ], 1411 ],
1412 'link_settings': {
1413 'libraries': [
1414 '-lcomctl32.lib',
1415 ],
1416 },
1405 'msvs_settings': { 1417 'msvs_settings': {
1406 'VCLinkerTool': { 1418 'VCLinkerTool': {
1419 'AdditionalOptions': [
1420 "\"/manifestdependency:type='win32' "
1421 "name='Microsoft.Windows.Common-Controls' "
1422 "version='6.0.0.0' "
1423 "processorArchitecture='*' "
1424 "publicKeyToken='6595b64144ccf1df' language='*'\"",
1425 ],
1407 # 2 == /SUBSYSTEM:WINDOWS 1426 # 2 == /SUBSYSTEM:WINDOWS
1408 'SubSystem': '2', 1427 'SubSystem': '2',
1409 }, 1428 },
1410 }, 1429 },
1411 }], 1430 }],
1412 ], # end of 'conditions' 1431 ], # end of 'conditions'
1413 }, # end of target 'remoting_me2me_host' 1432 }, # end of target 'remoting_me2me_host'
1414 1433
1415 { 1434 {
1416 'target_name': 'remoting_host_keygen', 1435 'target_name': 'remoting_host_keygen',
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1662 'host/capturer_win_unittest.cc', 1681 'host/capturer_win_unittest.cc',
1663 'host/chromoting_host_context_unittest.cc', 1682 'host/chromoting_host_context_unittest.cc',
1664 'host/chromoting_host_unittest.cc', 1683 'host/chromoting_host_unittest.cc',
1665 'host/client_session_unittest.cc', 1684 'host/client_session_unittest.cc',
1666 'host/differ_block_unittest.cc', 1685 'host/differ_block_unittest.cc',
1667 'host/differ_unittest.cc', 1686 'host/differ_unittest.cc',
1668 'host/heartbeat_sender_unittest.cc', 1687 'host/heartbeat_sender_unittest.cc',
1669 'host/host_key_pair_unittest.cc', 1688 'host/host_key_pair_unittest.cc',
1670 'host/host_mock_objects.cc', 1689 'host/host_mock_objects.cc',
1671 'host/host_mock_objects.h', 1690 'host/host_mock_objects.h',
1691 'host/host_user_interface.cc',
1692 'host/host_user_interface.h',
1672 'host/it2me_host_user_interface.cc', 1693 'host/it2me_host_user_interface.cc',
1673 'host/it2me_host_user_interface.h', 1694 'host/it2me_host_user_interface.h',
1674 'host/json_host_config_unittest.cc', 1695 'host/json_host_config_unittest.cc',
1675 'host/log_to_server_unittest.cc', 1696 'host/log_to_server_unittest.cc',
1676 'host/pin_hash_unittest.cc', 1697 'host/pin_hash_unittest.cc',
1677 'host/register_support_host_request_unittest.cc', 1698 'host/register_support_host_request_unittest.cc',
1678 'host/remote_input_filter_unittest.cc', 1699 'host/remote_input_filter_unittest.cc',
1679 'host/screen_recorder_unittest.cc', 1700 'host/screen_recorder_unittest.cc',
1680 'host/server_log_entry_unittest.cc', 1701 'host/server_log_entry_unittest.cc',
1681 'host/test_key_pair.h', 1702 'host/test_key_pair.h',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
1741 '../base/allocator/allocator.gyp:allocator', 1762 '../base/allocator/allocator.gyp:allocator',
1742 ], 1763 ],
1743 }, 1764 },
1744 ], 1765 ],
1745 ], 1766 ],
1746 }], 1767 }],
1747 ], # end of 'conditions' 1768 ], # end of 'conditions'
1748 }, # end of target 'remoting_unittests' 1769 }, # end of target 'remoting_unittests'
1749 ], # end of targets 1770 ], # end of targets
1750 } 1771 }
OLDNEW
« remoting/host/disconnect_window_mac.mm ('K') | « remoting/host/simple_host_process.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698