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

Side by Side Diff: remoting/remoting_srcs.gypi

Issue 1559023003: Move VideoRenderer to remoting/protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « remoting/protocol/video_renderer.h ('k') | remoting/test/protocol_perftest.cc » ('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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 'protocol/third_party_client_authenticator.h', 189 'protocol/third_party_client_authenticator.h',
190 'protocol/third_party_host_authenticator.cc', 190 'protocol/third_party_host_authenticator.cc',
191 'protocol/third_party_host_authenticator.h', 191 'protocol/third_party_host_authenticator.h',
192 'protocol/token_validator.h', 192 'protocol/token_validator.h',
193 'protocol/transport.cc', 193 'protocol/transport.cc',
194 'protocol/transport.h', 194 'protocol/transport.h',
195 'protocol/transport_context.cc', 195 'protocol/transport_context.cc',
196 'protocol/transport_context.h', 196 'protocol/transport_context.h',
197 'protocol/v2_authenticator.cc', 197 'protocol/v2_authenticator.cc',
198 'protocol/v2_authenticator.h', 198 'protocol/v2_authenticator.h',
199 'protocol/video_renderer.h',
199 'protocol/video_stub.h', 200 'protocol/video_stub.h',
200 ], 201 ],
201 202
202 # Files in protocol that don't compile for NaCl. 203 # Files in protocol that don't compile for NaCl.
203 'remoting_protocol_nonnacl_sources': [ 204 'remoting_protocol_nonnacl_sources': [
204 'protocol/capture_scheduler.cc', 205 'protocol/capture_scheduler.cc',
205 'protocol/capture_scheduler.h', 206 'protocol/capture_scheduler.h',
206 'protocol/chromium_port_allocator.cc', 207 'protocol/chromium_port_allocator.cc',
207 'protocol/chromium_port_allocator.h', 208 'protocol/chromium_port_allocator.h',
208 'protocol/chromium_socket_factory.cc', 209 'protocol/chromium_socket_factory.cc',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 'client/normalizing_input_filter_win.cc', 273 'client/normalizing_input_filter_win.cc',
273 'client/normalizing_input_filter_win.h', 274 'client/normalizing_input_filter_win.h',
274 'client/server_log_entry_client.cc', 275 'client/server_log_entry_client.cc',
275 'client/server_log_entry_client.h', 276 'client/server_log_entry_client.h',
276 'client/software_video_renderer.cc', 277 'client/software_video_renderer.cc',
277 'client/software_video_renderer.h', 278 'client/software_video_renderer.h',
278 'client/token_fetcher_proxy.cc', 279 'client/token_fetcher_proxy.cc',
279 'client/token_fetcher_proxy.h', 280 'client/token_fetcher_proxy.h',
280 'client/touch_input_scaler.cc', 281 'client/touch_input_scaler.cc',
281 'client/touch_input_scaler.h', 282 'client/touch_input_scaler.h',
282 'client/video_renderer.h',
283 ], 283 ],
284 284
285 'remoting_client_plugin_sources': [ 285 'remoting_client_plugin_sources': [
286 'client/plugin/chromoting_instance.cc', 286 'client/plugin/chromoting_instance.cc',
287 'client/plugin/chromoting_instance.h', 287 'client/plugin/chromoting_instance.h',
288 'client/plugin/delegating_signal_strategy.cc', 288 'client/plugin/delegating_signal_strategy.cc',
289 'client/plugin/delegating_signal_strategy.h', 289 'client/plugin/delegating_signal_strategy.h',
290 'client/plugin/pepper_address_resolver.cc', 290 'client/plugin/pepper_address_resolver.cc',
291 'client/plugin/pepper_address_resolver.h', 291 'client/plugin/pepper_address_resolver.h',
292 'client/plugin/pepper_audio_player.cc', 292 'client/plugin/pepper_audio_player.cc',
(...skipping 16 matching lines...) Expand all
309 'client/plugin/pepper_util.cc', 309 'client/plugin/pepper_util.cc',
310 'client/plugin/pepper_util.h', 310 'client/plugin/pepper_util.h',
311 'client/plugin/pepper_video_renderer.h', 311 'client/plugin/pepper_video_renderer.h',
312 'client/plugin/pepper_video_renderer_2d.cc', 312 'client/plugin/pepper_video_renderer_2d.cc',
313 'client/plugin/pepper_video_renderer_2d.h', 313 'client/plugin/pepper_video_renderer_2d.h',
314 'client/plugin/pepper_video_renderer_3d.cc', 314 'client/plugin/pepper_video_renderer_3d.cc',
315 'client/plugin/pepper_video_renderer_3d.h', 315 'client/plugin/pepper_video_renderer_3d.h',
316 ], 316 ],
317 } 317 }
318 } 318 }
OLDNEW
« no previous file with comments | « remoting/protocol/video_renderer.h ('k') | remoting/test/protocol_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698