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

Side by Side Diff: remoting/remoting.gyp

Issue 8725016: Refactor IT2Me-specific functions into a HostObserver subclass. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix other nits. Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 'HOST_PLUGIN_NAME="<(host_plugin_name)"', 277 'HOST_PLUGIN_NAME="<(host_plugin_name)"',
278 'HOST_PLUGIN_DESCRIPTION="<(host_plugin_description)"', 278 'HOST_PLUGIN_DESCRIPTION="<(host_plugin_description)"',
279 ], 279 ],
280 'dependencies': [ 280 'dependencies': [
281 'remoting_base', 281 'remoting_base',
282 'remoting_host', 282 'remoting_host',
283 'remoting_jingle_glue', 283 'remoting_jingle_glue',
284 '../third_party/npapi/npapi.gyp:npapi', 284 '../third_party/npapi/npapi.gyp:npapi',
285 ], 285 ],
286 'sources': [ 286 'sources': [
287 'host/it2me_host_user_interface.cc',
288 'host/it2me_host_user_interface.h',
287 'host/plugin/host_log_handler.cc', 289 'host/plugin/host_log_handler.cc',
288 'host/plugin/host_log_handler.h', 290 'host/plugin/host_log_handler.h',
289 'host/plugin/host_plugin.cc', 291 'host/plugin/host_plugin.cc',
290 'host/plugin/host_plugin.def', 292 'host/plugin/host_plugin.def',
291 'host/plugin/host_plugin.rc', 293 'host/plugin/host_plugin.rc',
292 'host/plugin/host_plugin_resource.h', 294 'host/plugin/host_plugin_resource.h',
293 'host/plugin/host_plugin_utils.cc', 295 'host/plugin/host_plugin_utils.cc',
294 'host/plugin/host_plugin_utils.h', 296 'host/plugin/host_plugin_utils.h',
295 'host/plugin/host_script_object.cc', 297 'host/plugin/host_script_object.cc',
296 'host/plugin/host_script_object.h', 298 'host/plugin/host_script_object.h',
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 'host/capturer_fake_ascii.cc', 660 'host/capturer_fake_ascii.cc',
659 'host/capturer_fake_ascii.h', 661 'host/capturer_fake_ascii.h',
660 'host/continue_window.h', 662 'host/continue_window.h',
661 'host/continue_window_mac.mm', 663 'host/continue_window_mac.mm',
662 'host/continue_window_linux.cc', 664 'host/continue_window_linux.cc',
663 'host/continue_window_win.cc', 665 'host/continue_window_win.cc',
664 'host/disconnect_window_linux.cc', 666 'host/disconnect_window_linux.cc',
665 'host/disconnect_window_mac.h', 667 'host/disconnect_window_mac.h',
666 'host/disconnect_window_mac.mm', 668 'host/disconnect_window_mac.mm',
667 'host/disconnect_window_win.cc', 669 'host/disconnect_window_win.cc',
670 'host/it2me_host_user_interface.cc',
671 'host/it2me_host_user_interface.h',
668 'host/simple_host_process.cc', 672 'host/simple_host_process.cc',
669 '../base/test/mock_chrome_application_mac.mm', 673 '../base/test/mock_chrome_application_mac.mm',
670 '../base/test/mock_chrome_application_mac.h', 674 '../base/test/mock_chrome_application_mac.h',
671 ], 675 ],
672 }, # end of target 'remoting_simple_host' 676 }, # end of target 'remoting_simple_host'
673 677
674 { 678 {
675 'target_name': 'remoting_host_keygen', 679 'target_name': 'remoting_host_keygen',
676 'type': 'executable', 680 'type': 'executable',
677 'dependencies': [ 681 'dependencies': [
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 'host/capturer_win_unittest.cc', 907 'host/capturer_win_unittest.cc',
904 'host/chromoting_host_context_unittest.cc', 908 'host/chromoting_host_context_unittest.cc',
905 'host/chromoting_host_unittest.cc', 909 'host/chromoting_host_unittest.cc',
906 'host/client_session_unittest.cc', 910 'host/client_session_unittest.cc',
907 'host/differ_block_unittest.cc', 911 'host/differ_block_unittest.cc',
908 'host/differ_unittest.cc', 912 'host/differ_unittest.cc',
909 'host/heartbeat_sender_unittest.cc', 913 'host/heartbeat_sender_unittest.cc',
910 'host/host_key_pair_unittest.cc', 914 'host/host_key_pair_unittest.cc',
911 'host/host_mock_objects.cc', 915 'host/host_mock_objects.cc',
912 'host/host_mock_objects.h', 916 'host/host_mock_objects.h',
917 'host/it2me_host_user_interface.cc',
918 'host/it2me_host_user_interface.h',
913 'host/json_host_config_unittest.cc', 919 'host/json_host_config_unittest.cc',
914 'host/log_to_server_unittest.cc', 920 'host/log_to_server_unittest.cc',
915 'host/register_support_host_request_unittest.cc', 921 'host/register_support_host_request_unittest.cc',
916 'host/screen_recorder_unittest.cc', 922 'host/screen_recorder_unittest.cc',
917 'host/self_access_verifier_unittest.cc', 923 'host/self_access_verifier_unittest.cc',
918 'host/server_log_entry_unittest.cc', 924 'host/server_log_entry_unittest.cc',
919 'host/test_key_pair.h', 925 'host/test_key_pair.h',
920 'jingle_glue/fake_signal_strategy.cc', 926 'jingle_glue/fake_signal_strategy.cc',
921 'jingle_glue/fake_signal_strategy.h', 927 'jingle_glue/fake_signal_strategy.h',
922 'jingle_glue/iq_sender_unittest.cc', 928 'jingle_glue/iq_sender_unittest.cc',
(...skipping 30 matching lines...) Expand all
953 '../base/allocator/allocator.gyp:allocator', 959 '../base/allocator/allocator.gyp:allocator',
954 ], 960 ],
955 }, 961 },
956 ], 962 ],
957 ], 963 ],
958 }], 964 }],
959 ], # end of 'conditions' 965 ], # end of 'conditions'
960 }, # end of target 'remoting_unittests' 966 }, # end of target 'remoting_unittests'
961 ], # end of targets 967 ], # end of targets
962 } 968 }
OLDNEW
« remoting/host/it2me_host_user_interface.cc ('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