| OLD | NEW |
| 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 Loading... |
| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 deps = [ | 191 deps = [ |
| 188 "//base", | 192 "//base", |
| 189 "//crypto", | 193 "//crypto", |
| 190 "//jingle:jingle_glue", | 194 "//jingle:jingle_glue", |
| 191 "//net", | 195 "//net", |
| 192 "//remoting/base", | 196 "//remoting/base", |
| 193 "//remoting/codec:decoder", | 197 "//remoting/codec:decoder", |
| 194 "//remoting/signaling", | 198 "//remoting/signaling", |
| 195 "//third_party/boringssl", | 199 "//third_party/boringssl", |
| 196 "//third_party/libyuv", | 200 "//third_party/libyuv", |
| 201 "//third_party/re2", |
| 197 ] | 202 ] |
| 198 | 203 |
| 199 if (!is_nacl) { | 204 if (!is_nacl) { |
| 200 sources += [ | 205 sources += [ |
| 201 "chromium_port_allocator_factory.cc", | 206 "chromium_port_allocator_factory.cc", |
| 202 "chromium_port_allocator_factory.h", | 207 "chromium_port_allocator_factory.h", |
| 203 "chromium_socket_factory.cc", | 208 "chromium_socket_factory.cc", |
| 204 "chromium_socket_factory.h", | 209 "chromium_socket_factory.h", |
| 205 "webrtc_audio_module.cc", | 210 "webrtc_audio_module.cc", |
| 206 "webrtc_audio_module.h", | 211 "webrtc_audio_module.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 static_library("test_support") { | 264 static_library("test_support") { |
| 260 testonly = true | 265 testonly = true |
| 261 | 266 |
| 262 sources = [ | 267 sources = [ |
| 263 "fake_authenticator.cc", | 268 "fake_authenticator.cc", |
| 264 "fake_authenticator.h", | 269 "fake_authenticator.h", |
| 265 "fake_connection_to_host.cc", | 270 "fake_connection_to_host.cc", |
| 266 "fake_connection_to_host.h", | 271 "fake_connection_to_host.h", |
| 267 "fake_datagram_socket.cc", | 272 "fake_datagram_socket.cc", |
| 268 "fake_datagram_socket.h", | 273 "fake_datagram_socket.h", |
| 274 "fake_message_pipe.cc", |
| 275 "fake_message_pipe.h", |
| 276 "fake_message_pipe_wrapper.cc", |
| 277 "fake_message_pipe_wrapper.h", |
| 269 "fake_session.cc", | 278 "fake_session.cc", |
| 270 "fake_session.h", | 279 "fake_session.h", |
| 271 "fake_stream_socket.cc", | 280 "fake_stream_socket.cc", |
| 272 "fake_stream_socket.h", | 281 "fake_stream_socket.h", |
| 273 "fake_video_renderer.cc", | 282 "fake_video_renderer.cc", |
| 274 "fake_video_renderer.h", | 283 "fake_video_renderer.h", |
| 275 "protocol_mock_objects.cc", | 284 "protocol_mock_objects.cc", |
| 276 "protocol_mock_objects.h", | 285 "protocol_mock_objects.h", |
| 277 ] | 286 ] |
| 278 | 287 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 302 "authenticator_test_base.h", | 311 "authenticator_test_base.h", |
| 303 "channel_multiplexer_unittest.cc", | 312 "channel_multiplexer_unittest.cc", |
| 304 "channel_socket_adapter_unittest.cc", | 313 "channel_socket_adapter_unittest.cc", |
| 305 "chromium_socket_factory_unittest.cc", | 314 "chromium_socket_factory_unittest.cc", |
| 306 "client_video_dispatcher_unittest.cc", | 315 "client_video_dispatcher_unittest.cc", |
| 307 "clipboard_echo_filter_unittest.cc", | 316 "clipboard_echo_filter_unittest.cc", |
| 308 "clipboard_filter_unittest.cc", | 317 "clipboard_filter_unittest.cc", |
| 309 "connection_tester.cc", | 318 "connection_tester.cc", |
| 310 "connection_tester.h", | 319 "connection_tester.h", |
| 311 "content_description_unittest.cc", | 320 "content_description_unittest.cc", |
| 321 "data_channel_manager_unittest.cc", |
| 312 "http_ice_config_request_unittest.cc", | 322 "http_ice_config_request_unittest.cc", |
| 313 "ice_transport_unittest.cc", | 323 "ice_transport_unittest.cc", |
| 314 "input_event_tracker_unittest.cc", | 324 "input_event_tracker_unittest.cc", |
| 315 "input_filter_unittest.cc", | 325 "input_filter_unittest.cc", |
| 316 "jingle_messages_unittest.cc", | 326 "jingle_messages_unittest.cc", |
| 317 "jingle_session_unittest.cc", | 327 "jingle_session_unittest.cc", |
| 318 "message_decoder_unittest.cc", | 328 "message_decoder_unittest.cc", |
| 319 "message_reader_unittest.cc", | 329 "message_reader_unittest.cc", |
| 320 "monitored_video_stub_unittest.cc", | 330 "monitored_video_stub_unittest.cc", |
| 321 "mouse_input_filter_unittest.cc", | 331 "mouse_input_filter_unittest.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 345 ] | 355 ] |
| 346 } | 356 } |
| 347 | 357 |
| 348 deps = [ | 358 deps = [ |
| 349 ":test_support", | 359 ":test_support", |
| 350 "//net:test_support", | 360 "//net:test_support", |
| 351 "//testing/gmock", | 361 "//testing/gmock", |
| 352 "//testing/gtest", | 362 "//testing/gtest", |
| 353 ] | 363 ] |
| 354 } | 364 } |
| OLD | NEW |