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

Side by Side Diff: remoting/remoting.gyp

Issue 10538091: [Chromoting] Make ChromotingHost's dependency on libjingle injected, instead of hard-coded. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 'host/host_port_allocator.h', 1113 'host/host_port_allocator.h',
1114 'host/host_secret.cc', 1114 'host/host_secret.cc',
1115 'host/host_secret.h', 1115 'host/host_secret.h',
1116 'host/host_status_observer.h', 1116 'host/host_status_observer.h',
1117 'host/host_user_interface.cc', 1117 'host/host_user_interface.cc',
1118 'host/host_user_interface.h', 1118 'host/host_user_interface.h',
1119 'host/in_memory_host_config.cc', 1119 'host/in_memory_host_config.cc',
1120 'host/in_memory_host_config.h', 1120 'host/in_memory_host_config.h',
1121 'host/it2me_host_user_interface.cc', 1121 'host/it2me_host_user_interface.cc',
1122 'host/it2me_host_user_interface.h', 1122 'host/it2me_host_user_interface.h',
1123 'host/jingle_session_manager_factory.cc',
1124 'host/jingle_session_manager_factory.h',
1123 'host/json_host_config.cc', 1125 'host/json_host_config.cc',
1124 'host/json_host_config.h', 1126 'host/json_host_config.h',
1125 'host/local_input_monitor.h', 1127 'host/local_input_monitor.h',
1126 'host/local_input_monitor_linux.cc', 1128 'host/local_input_monitor_linux.cc',
1127 'host/local_input_monitor_mac.mm', 1129 'host/local_input_monitor_mac.mm',
1128 'host/local_input_monitor_thread_linux.cc', 1130 'host/local_input_monitor_thread_linux.cc',
1129 'host/local_input_monitor_thread_linux.h', 1131 'host/local_input_monitor_thread_linux.h',
1130 'host/local_input_monitor_thread_win.cc', 1132 'host/local_input_monitor_thread_win.cc',
1131 'host/local_input_monitor_thread_win.h', 1133 'host/local_input_monitor_thread_win.h',
1132 'host/local_input_monitor_win.cc', 1134 'host/local_input_monitor_win.cc',
(...skipping 11 matching lines...) Expand all
1144 'host/register_support_host_request.cc', 1146 'host/register_support_host_request.cc',
1145 'host/register_support_host_request.h', 1147 'host/register_support_host_request.h',
1146 'host/remote_input_filter.cc', 1148 'host/remote_input_filter.cc',
1147 'host/remote_input_filter.h', 1149 'host/remote_input_filter.h',
1148 'host/screen_recorder.cc', 1150 'host/screen_recorder.cc',
1149 'host/screen_recorder.h', 1151 'host/screen_recorder.h',
1150 'host/server_log_entry.cc', 1152 'host/server_log_entry.cc',
1151 'host/server_log_entry.h', 1153 'host/server_log_entry.h',
1152 'host/session_event_executor_win.cc', 1154 'host/session_event_executor_win.cc',
1153 'host/session_event_executor_win.h', 1155 'host/session_event_executor_win.h',
1156 'host/session_manager_factory.h',
1154 'host/signaling_connector.cc', 1157 'host/signaling_connector.cc',
1155 'host/signaling_connector.h', 1158 'host/signaling_connector.h',
1156 'host/scoped_thread_desktop_win.cc', 1159 'host/scoped_thread_desktop_win.cc',
1157 'host/scoped_thread_desktop_win.h', 1160 'host/scoped_thread_desktop_win.h',
1158 'host/ui_strings.cc', 1161 'host/ui_strings.cc',
1159 'host/ui_strings.h', 1162 'host/ui_strings.h',
1160 'host/url_fetcher.cc', 1163 'host/url_fetcher.cc',
1161 'host/url_fetcher.h', 1164 'host/url_fetcher.h',
1162 'host/url_request_context.cc', 1165 'host/url_request_context.cc',
1163 'host/url_request_context.h', 1166 'host/url_request_context.h',
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 '../base/allocator/allocator.gyp:allocator', 1709 '../base/allocator/allocator.gyp:allocator',
1707 ], 1710 ],
1708 }, 1711 },
1709 ], 1712 ],
1710 ], 1713 ],
1711 }], 1714 }],
1712 ], # end of 'conditions' 1715 ], # end of 'conditions'
1713 }, # end of target 'remoting_unittests' 1716 }, # end of target 'remoting_unittests'
1714 ], # end of targets 1717 ], # end of targets
1715 } 1718 }
OLDNEW
« remoting/host/simple_host_process.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