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

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

Issue 2907073003: [Chromoting] Add DataChannelManager to manage optional incoming data channels (Closed)
Patch Set: Resolve review comments 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
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_handler.cc",
53 "data_channel_handler.h",
54 "data_channel_manager.cc",
55 "data_channel_manager.h",
52 "errors.cc", 56 "errors.cc",
53 "errors.h", 57 "errors.h",
54 "frame_consumer.h", 58 "frame_consumer.h",
55 "frame_stats.cc", 59 "frame_stats.cc",
56 "frame_stats.h", 60 "frame_stats.h",
57 "host_control_dispatcher.cc", 61 "host_control_dispatcher.cc",
58 "host_control_dispatcher.h", 62 "host_control_dispatcher.h",
59 "host_event_dispatcher.cc", 63 "host_event_dispatcher.cc",
60 "host_event_dispatcher.h", 64 "host_event_dispatcher.h",
61 "host_stub.h", 65 "host_stub.h",
(...skipping 197 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_transport_unittest.cc", 322 "ice_transport_unittest.cc",
314 "input_event_tracker_unittest.cc", 323 "input_event_tracker_unittest.cc",
315 "input_filter_unittest.cc", 324 "input_filter_unittest.cc",
316 "jingle_messages_unittest.cc", 325 "jingle_messages_unittest.cc",
317 "jingle_session_unittest.cc", 326 "jingle_session_unittest.cc",
318 "message_decoder_unittest.cc", 327 "message_decoder_unittest.cc",
319 "message_reader_unittest.cc", 328 "message_reader_unittest.cc",
320 "monitored_video_stub_unittest.cc", 329 "monitored_video_stub_unittest.cc",
321 "mouse_input_filter_unittest.cc", 330 "mouse_input_filter_unittest.cc",
(...skipping 23 matching lines...) Expand all
345 ] 354 ]
346 } 355 }
347 356
348 deps = [ 357 deps = [
349 ":test_support", 358 ":test_support",
350 "//net:test_support", 359 "//net:test_support",
351 "//testing/gmock", 360 "//testing/gmock",
352 "//testing/gtest", 361 "//testing/gtest",
353 ] 362 ]
354 } 363 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698