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

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 indentation 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
« no previous file with comments | « remoting/host/simple_host_process.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 'HOST_PLUGIN_NAME="<(host_plugin_name)"', 302 'HOST_PLUGIN_NAME="<(host_plugin_name)"',
303 'HOST_PLUGIN_DESCRIPTION="<(host_plugin_description)"', 303 'HOST_PLUGIN_DESCRIPTION="<(host_plugin_description)"',
304 ], 304 ],
305 'dependencies': [ 305 'dependencies': [
306 'remoting_base', 306 'remoting_base',
307 'remoting_host', 307 'remoting_host',
308 'remoting_jingle_glue', 308 'remoting_jingle_glue',
309 '../third_party/npapi/npapi.gyp:npapi', 309 '../third_party/npapi/npapi.gyp:npapi',
310 ], 310 ],
311 'sources': [ 311 'sources': [
312 'host/it2me_host_user_interface.cc',
313 'host/it2me_host_user_interface.h',
312 'host/plugin/host_log_handler.cc', 314 'host/plugin/host_log_handler.cc',
313 'host/plugin/host_log_handler.h', 315 'host/plugin/host_log_handler.h',
314 'host/plugin/host_plugin.cc', 316 'host/plugin/host_plugin.cc',
315 'host/plugin/host_plugin.def', 317 'host/plugin/host_plugin.def',
316 'host/plugin/host_plugin.rc', 318 'host/plugin/host_plugin.rc',
317 'host/plugin/host_plugin_resource.h', 319 'host/plugin/host_plugin_resource.h',
318 'host/plugin/host_plugin_utils.cc', 320 'host/plugin/host_plugin_utils.cc',
319 'host/plugin/host_plugin_utils.h', 321 'host/plugin/host_plugin_utils.h',
320 'host/plugin/host_script_object.cc', 322 'host/plugin/host_script_object.cc',
321 'host/plugin/host_script_object.h', 323 'host/plugin/host_script_object.h',
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 'host/capturer_fake_ascii.cc', 682 'host/capturer_fake_ascii.cc',
681 'host/capturer_fake_ascii.h', 683 'host/capturer_fake_ascii.h',
682 'host/continue_window.h', 684 'host/continue_window.h',
683 'host/continue_window_mac.mm', 685 'host/continue_window_mac.mm',
684 'host/continue_window_linux.cc', 686 'host/continue_window_linux.cc',
685 'host/continue_window_win.cc', 687 'host/continue_window_win.cc',
686 'host/disconnect_window_linux.cc', 688 'host/disconnect_window_linux.cc',
687 'host/disconnect_window_mac.h', 689 'host/disconnect_window_mac.h',
688 'host/disconnect_window_mac.mm', 690 'host/disconnect_window_mac.mm',
689 'host/disconnect_window_win.cc', 691 'host/disconnect_window_win.cc',
692 'host/it2me_host_user_interface.cc',
693 'host/it2me_host_user_interface.h',
690 'host/simple_host_process.cc', 694 'host/simple_host_process.cc',
691 '../base/test/mock_chrome_application_mac.mm', 695 '../base/test/mock_chrome_application_mac.mm',
692 '../base/test/mock_chrome_application_mac.h', 696 '../base/test/mock_chrome_application_mac.h',
693 ], 697 ],
694 }, # end of target 'remoting_simple_host' 698 }, # end of target 'remoting_simple_host'
695 699
696 { 700 {
697 'target_name': 'remoting_host_keygen', 701 'target_name': 'remoting_host_keygen',
698 'type': 'executable', 702 'type': 'executable',
699 'dependencies': [ 703 'dependencies': [
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 'host/capturer_win_unittest.cc', 937 'host/capturer_win_unittest.cc',
934 'host/chromoting_host_context_unittest.cc', 938 'host/chromoting_host_context_unittest.cc',
935 'host/chromoting_host_unittest.cc', 939 'host/chromoting_host_unittest.cc',
936 'host/client_session_unittest.cc', 940 'host/client_session_unittest.cc',
937 'host/differ_block_unittest.cc', 941 'host/differ_block_unittest.cc',
938 'host/differ_unittest.cc', 942 'host/differ_unittest.cc',
939 'host/heartbeat_sender_unittest.cc', 943 'host/heartbeat_sender_unittest.cc',
940 'host/host_key_pair_unittest.cc', 944 'host/host_key_pair_unittest.cc',
941 'host/host_mock_objects.cc', 945 'host/host_mock_objects.cc',
942 'host/host_mock_objects.h', 946 'host/host_mock_objects.h',
947 'host/it2me_host_user_interface.cc',
948 'host/it2me_host_user_interface.h',
943 'host/json_host_config_unittest.cc', 949 'host/json_host_config_unittest.cc',
944 'host/log_to_server_unittest.cc', 950 'host/log_to_server_unittest.cc',
945 'host/register_support_host_request_unittest.cc', 951 'host/register_support_host_request_unittest.cc',
946 'host/screen_recorder_unittest.cc', 952 'host/screen_recorder_unittest.cc',
947 'host/server_log_entry_unittest.cc', 953 'host/server_log_entry_unittest.cc',
948 'host/test_key_pair.h', 954 'host/test_key_pair.h',
949 'jingle_glue/fake_signal_strategy.cc', 955 'jingle_glue/fake_signal_strategy.cc',
950 'jingle_glue/fake_signal_strategy.h', 956 'jingle_glue/fake_signal_strategy.h',
951 'jingle_glue/iq_sender_unittest.cc', 957 'jingle_glue/iq_sender_unittest.cc',
952 'jingle_glue/jingle_thread_unittest.cc', 958 'jingle_glue/jingle_thread_unittest.cc',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 ['OS == "win"', { 995 ['OS == "win"', {
990 'dependencies': [ 996 'dependencies': [
991 # Required for JS unittests. 997 # Required for JS unittests.
992 'installer_util', 998 'installer_util',
993 ], 999 ],
994 }], # 'OS == "win"' 1000 }], # 'OS == "win"'
995 ], # end of 'conditions' 1001 ], # end of 'conditions'
996 }, # end of target 'remoting_unittests' 1002 }, # end of target 'remoting_unittests'
997 ], # end of targets 1003 ], # end of targets
998 } 1004 }
OLDNEW
« no previous file with comments | « remoting/host/simple_host_process.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698