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

Side by Side Diff: remoting/remoting_srcs.gypi

Issue 1521883006: Add TransportContext class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « remoting/remoting_host_srcs.gypi ('k') | remoting/test/fake_port_allocator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'daemon_controller_guid': '655bd819-c08c-4b04-80c2-f160739ff6ef', 7 'daemon_controller_guid': '655bd819-c08c-4b04-80c2-f160739ff6ef',
8 'rdp_desktop_session_guid': '6a7699f0-ee43-43e7-aa30-a6738f9bd470', 8 'rdp_desktop_session_guid': '6a7699f0-ee43-43e7-aa30-a6738f9bd470',
9 'remoting_base_sources': [ 9 'remoting_base_sources': [
10 'base/auto_thread.cc', 10 'base/auto_thread.cc',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 'protocol/errors.h', 111 'protocol/errors.h',
112 'protocol/host_control_dispatcher.cc', 112 'protocol/host_control_dispatcher.cc',
113 'protocol/host_control_dispatcher.h', 113 'protocol/host_control_dispatcher.h',
114 'protocol/host_event_dispatcher.cc', 114 'protocol/host_event_dispatcher.cc',
115 'protocol/host_event_dispatcher.h', 115 'protocol/host_event_dispatcher.h',
116 'protocol/host_stub.h', 116 'protocol/host_stub.h',
117 'protocol/host_video_dispatcher.cc', 117 'protocol/host_video_dispatcher.cc',
118 'protocol/host_video_dispatcher.h', 118 'protocol/host_video_dispatcher.h',
119 'protocol/ice_transport_channel.cc', 119 'protocol/ice_transport_channel.cc',
120 'protocol/ice_transport_channel.h', 120 'protocol/ice_transport_channel.h',
121 'protocol/ice_transport_factory.cc',
122 'protocol/ice_transport_factory.h',
123 'protocol/ice_transport.cc', 121 'protocol/ice_transport.cc',
124 'protocol/ice_transport.h', 122 'protocol/ice_transport.h',
125 'protocol/input_event_tracker.cc', 123 'protocol/input_event_tracker.cc',
126 'protocol/input_event_tracker.h', 124 'protocol/input_event_tracker.h',
127 'protocol/input_filter.cc', 125 'protocol/input_filter.cc',
128 'protocol/input_filter.h', 126 'protocol/input_filter.h',
129 'protocol/input_stub.h', 127 'protocol/input_stub.h',
130 'protocol/it2me_host_authenticator_factory.cc', 128 'protocol/it2me_host_authenticator_factory.cc',
131 'protocol/it2me_host_authenticator_factory.h', 129 'protocol/it2me_host_authenticator_factory.h',
132 'protocol/jingle_messages.cc', 130 'protocol/jingle_messages.cc',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'protocol/stream_channel_factory.h', 184 'protocol/stream_channel_factory.h',
187 'protocol/third_party_authenticator_base.cc', 185 'protocol/third_party_authenticator_base.cc',
188 'protocol/third_party_authenticator_base.h', 186 'protocol/third_party_authenticator_base.h',
189 'protocol/third_party_client_authenticator.cc', 187 'protocol/third_party_client_authenticator.cc',
190 'protocol/third_party_client_authenticator.h', 188 'protocol/third_party_client_authenticator.h',
191 'protocol/third_party_host_authenticator.cc', 189 'protocol/third_party_host_authenticator.cc',
192 'protocol/third_party_host_authenticator.h', 190 'protocol/third_party_host_authenticator.h',
193 'protocol/token_validator.h', 191 'protocol/token_validator.h',
194 'protocol/transport.cc', 192 'protocol/transport.cc',
195 'protocol/transport.h', 193 'protocol/transport.h',
194 'protocol/transport_context.cc',
195 'protocol/transport_context.h',
196 'protocol/v2_authenticator.cc', 196 'protocol/v2_authenticator.cc',
197 'protocol/v2_authenticator.h', 197 'protocol/v2_authenticator.h',
198 'protocol/video_stub.h', 198 'protocol/video_stub.h',
199 ], 199 ],
200 200
201 # Files in protocol that don't compile for NaCl. 201 # Files in protocol that don't compile for NaCl.
202 'remoting_protocol_nonnacl_sources': [ 202 'remoting_protocol_nonnacl_sources': [
203 'protocol/capture_scheduler.cc', 203 'protocol/capture_scheduler.cc',
204 'protocol/capture_scheduler.h', 204 'protocol/capture_scheduler.h',
205 'protocol/chromium_port_allocator.cc', 205 'protocol/chromium_port_allocator.cc',
206 'protocol/chromium_port_allocator.h', 206 'protocol/chromium_port_allocator.h',
207 'protocol/chromium_port_allocator_factory.cc',
208 'protocol/chromium_port_allocator_factory.h',
209 'protocol/chromium_socket_factory.cc', 207 'protocol/chromium_socket_factory.cc',
210 'protocol/chromium_socket_factory.h', 208 'protocol/chromium_socket_factory.h',
211 'protocol/ice_connection_to_client.cc', 209 'protocol/ice_connection_to_client.cc',
212 'protocol/ice_connection_to_client.h', 210 'protocol/ice_connection_to_client.h',
213 'protocol/port_allocator_factory.h', 211 'protocol/port_allocator_factory.h',
214 'protocol/video_frame_pump.cc', 212 'protocol/video_frame_pump.cc',
215 'protocol/video_frame_pump.h', 213 'protocol/video_frame_pump.h',
216 'protocol/webrtc_connection_to_client.cc', 214 'protocol/webrtc_connection_to_client.cc',
217 'protocol/webrtc_connection_to_client.h', 215 'protocol/webrtc_connection_to_client.h',
218 'protocol/webrtc_data_stream_adapter.cc', 216 'protocol/webrtc_data_stream_adapter.cc',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 'client/plugin/pepper_util.cc', 306 'client/plugin/pepper_util.cc',
309 'client/plugin/pepper_util.h', 307 'client/plugin/pepper_util.h',
310 'client/plugin/pepper_video_renderer.h', 308 'client/plugin/pepper_video_renderer.h',
311 'client/plugin/pepper_video_renderer_2d.cc', 309 'client/plugin/pepper_video_renderer_2d.cc',
312 'client/plugin/pepper_video_renderer_2d.h', 310 'client/plugin/pepper_video_renderer_2d.h',
313 'client/plugin/pepper_video_renderer_3d.cc', 311 'client/plugin/pepper_video_renderer_3d.cc',
314 'client/plugin/pepper_video_renderer_3d.h', 312 'client/plugin/pepper_video_renderer_3d.h',
315 ], 313 ],
316 } 314 }
317 } 315 }
OLDNEW
« no previous file with comments | « remoting/remoting_host_srcs.gypi ('k') | remoting/test/fake_port_allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698