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

Side by Side Diff: remoting/protocol/BUILD.gn

Issue 2907073003: [Chromoting] Add DataChannelManager to manage optional incoming data channels (Closed)
Patch Set: Fix test failure without DCHECK Created 3 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
« no previous file with comments | « remoting/proto/test.proto ('k') | remoting/protocol/data_channel_manager.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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//remoting/remoting_options.gni") 6 import("//remoting/remoting_options.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 8
9 static_library("protocol") { 9 static_library("protocol") {
10 sources = [ 10 sources = [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "clipboard_filter.h", 42 "clipboard_filter.h",
43 "clipboard_stub.h", 43 "clipboard_stub.h",
44 "clipboard_thread_proxy.cc", 44 "clipboard_thread_proxy.cc",
45 "clipboard_thread_proxy.h", 45 "clipboard_thread_proxy.h",
46 "connection_to_client.h", 46 "connection_to_client.h",
47 "connection_to_host.cc", 47 "connection_to_host.cc",
48 "connection_to_host.h", 48 "connection_to_host.h",
49 "content_description.cc", 49 "content_description.cc",
50 "content_description.h", 50 "content_description.h",
51 "datagram_channel_factory.h", 51 "datagram_channel_factory.h",
52 "data_channel_manager.cc",
53 "data_channel_manager.h",
52 "errors.cc", 54 "errors.cc",
53 "errors.h", 55 "errors.h",
54 "frame_consumer.h", 56 "frame_consumer.h",
55 "frame_stats.cc", 57 "frame_stats.cc",
56 "frame_stats.h", 58 "frame_stats.h",
57 "host_control_dispatcher.cc", 59 "host_control_dispatcher.cc",
58 "host_control_dispatcher.h", 60 "host_control_dispatcher.h",
59 "host_event_dispatcher.cc", 61 "host_event_dispatcher.cc",
60 "host_event_dispatcher.h", 62 "host_event_dispatcher.h",
61 "host_stub.h", 63 "host_stub.h",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "message_decoder.h", 99 "message_decoder.h",
98 "message_pipe.h", 100 "message_pipe.h",
99 "message_reader.cc", 101 "message_reader.cc",
100 "message_reader.h", 102 "message_reader.h",
101 "message_serialization.cc", 103 "message_serialization.cc",
102 "message_serialization.h", 104 "message_serialization.h",
103 "monitored_video_stub.cc", 105 "monitored_video_stub.cc",
104 "monitored_video_stub.h", 106 "monitored_video_stub.h",
105 "mouse_input_filter.cc", 107 "mouse_input_filter.cc",
106 "mouse_input_filter.h", 108 "mouse_input_filter.h",
109 "named_message_pipe_handler.cc",
110 "named_message_pipe_handler.h",
107 "negotiating_authenticator_base.cc", 111 "negotiating_authenticator_base.cc",
108 "negotiating_authenticator_base.h", 112 "negotiating_authenticator_base.h",
109 "negotiating_client_authenticator.cc", 113 "negotiating_client_authenticator.cc",
110 "negotiating_client_authenticator.h", 114 "negotiating_client_authenticator.h",
111 "negotiating_host_authenticator.cc", 115 "negotiating_host_authenticator.cc",
112 "negotiating_host_authenticator.h", 116 "negotiating_host_authenticator.h",
113 "network_settings.h", 117 "network_settings.h",
114 "p2p_datagram_socket.h", 118 "p2p_datagram_socket.h",
115 "p2p_stream_socket.h", 119 "p2p_stream_socket.h",
116 "pairing_authenticator_base.cc", 120 "pairing_authenticator_base.cc",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 static_library("test_support") { 263 static_library("test_support") {
260 testonly = true 264 testonly = true
261 265
262 sources = [ 266 sources = [
263 "fake_authenticator.cc", 267 "fake_authenticator.cc",
264 "fake_authenticator.h", 268 "fake_authenticator.h",
265 "fake_connection_to_host.cc", 269 "fake_connection_to_host.cc",
266 "fake_connection_to_host.h", 270 "fake_connection_to_host.h",
267 "fake_datagram_socket.cc", 271 "fake_datagram_socket.cc",
268 "fake_datagram_socket.h", 272 "fake_datagram_socket.h",
273 "fake_message_pipe.cc",
274 "fake_message_pipe.h",
275 "fake_message_pipe_wrapper.cc",
276 "fake_message_pipe_wrapper.h",
269 "fake_session.cc", 277 "fake_session.cc",
270 "fake_session.h", 278 "fake_session.h",
271 "fake_stream_socket.cc", 279 "fake_stream_socket.cc",
272 "fake_stream_socket.h", 280 "fake_stream_socket.h",
273 "fake_video_renderer.cc", 281 "fake_video_renderer.cc",
274 "fake_video_renderer.h", 282 "fake_video_renderer.h",
275 "protocol_mock_objects.cc", 283 "protocol_mock_objects.cc",
276 "protocol_mock_objects.h", 284 "protocol_mock_objects.h",
277 ] 285 ]
278 286
(...skipping 23 matching lines...) Expand all
302 "authenticator_test_base.h", 310 "authenticator_test_base.h",
303 "channel_multiplexer_unittest.cc", 311 "channel_multiplexer_unittest.cc",
304 "channel_socket_adapter_unittest.cc", 312 "channel_socket_adapter_unittest.cc",
305 "chromium_socket_factory_unittest.cc", 313 "chromium_socket_factory_unittest.cc",
306 "client_video_dispatcher_unittest.cc", 314 "client_video_dispatcher_unittest.cc",
307 "clipboard_echo_filter_unittest.cc", 315 "clipboard_echo_filter_unittest.cc",
308 "clipboard_filter_unittest.cc", 316 "clipboard_filter_unittest.cc",
309 "connection_tester.cc", 317 "connection_tester.cc",
310 "connection_tester.h", 318 "connection_tester.h",
311 "content_description_unittest.cc", 319 "content_description_unittest.cc",
320 "data_channel_manager_unittest.cc",
312 "http_ice_config_request_unittest.cc", 321 "http_ice_config_request_unittest.cc",
313 "ice_config_unittest.cc", 322 "ice_config_unittest.cc",
314 "ice_transport_unittest.cc", 323 "ice_transport_unittest.cc",
315 "input_event_tracker_unittest.cc", 324 "input_event_tracker_unittest.cc",
316 "input_filter_unittest.cc", 325 "input_filter_unittest.cc",
317 "jingle_messages_unittest.cc", 326 "jingle_messages_unittest.cc",
318 "jingle_session_unittest.cc", 327 "jingle_session_unittest.cc",
319 "message_decoder_unittest.cc", 328 "message_decoder_unittest.cc",
320 "message_reader_unittest.cc", 329 "message_reader_unittest.cc",
321 "monitored_video_stub_unittest.cc", 330 "monitored_video_stub_unittest.cc",
(...skipping 24 matching lines...) Expand all
346 ] 355 ]
347 } 356 }
348 357
349 deps = [ 358 deps = [
350 ":test_support", 359 ":test_support",
351 "//net:test_support", 360 "//net:test_support",
352 "//testing/gmock", 361 "//testing/gmock",
353 "//testing/gtest", 362 "//testing/gtest",
354 ] 363 ]
355 } 364 }
OLDNEW
« no previous file with comments | « remoting/proto/test.proto ('k') | remoting/protocol/data_channel_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698