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

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

Issue 2392963003: Add Audio support in Chromoting host when using WebRTC. (Closed)
Patch Set: . Created 4 years, 2 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/host/chromoting_host.cc ('k') | remoting/protocol/audio_pump_unittest.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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 static_library("protocol") { 7 static_library("protocol") {
8 sources = [ 8 sources = [
9 "audio_decode_scheduler.cc", 9 "audio_decode_scheduler.cc",
10 "audio_decode_scheduler.h", 10 "audio_decode_scheduler.h",
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "chromium_port_allocator_factory.cc", 199 "chromium_port_allocator_factory.cc",
200 "chromium_port_allocator_factory.h", 200 "chromium_port_allocator_factory.h",
201 "chromium_socket_factory.cc", 201 "chromium_socket_factory.cc",
202 "chromium_socket_factory.h", 202 "chromium_socket_factory.h",
203 "ice_connection_to_client.cc", 203 "ice_connection_to_client.cc",
204 "ice_connection_to_client.h", 204 "ice_connection_to_client.h",
205 "video_frame_pump.cc", 205 "video_frame_pump.cc",
206 "video_frame_pump.h", 206 "video_frame_pump.h",
207 "webrtc_audio_module.cc", 207 "webrtc_audio_module.cc",
208 "webrtc_audio_module.h", 208 "webrtc_audio_module.h",
209 "webrtc_audio_source_adapter.cc",
210 "webrtc_audio_source_adapter.h",
211 "webrtc_audio_stream.cc",
212 "webrtc_audio_stream.h",
209 "webrtc_connection_to_client.cc", 213 "webrtc_connection_to_client.cc",
210 "webrtc_connection_to_client.h", 214 "webrtc_connection_to_client.h",
211 "webrtc_connection_to_host.cc", 215 "webrtc_connection_to_host.cc",
212 "webrtc_connection_to_host.h", 216 "webrtc_connection_to_host.h",
213 "webrtc_data_stream_adapter.cc", 217 "webrtc_data_stream_adapter.cc",
214 "webrtc_data_stream_adapter.h", 218 "webrtc_data_stream_adapter.h",
215 "webrtc_dummy_video_capturer.cc", 219 "webrtc_dummy_video_capturer.cc",
216 "webrtc_dummy_video_capturer.h", 220 "webrtc_dummy_video_capturer.h",
217 "webrtc_dummy_video_encoder.cc", 221 "webrtc_dummy_video_encoder.cc",
218 "webrtc_dummy_video_encoder.h", 222 "webrtc_dummy_video_encoder.h",
(...skipping 21 matching lines...) Expand all
240 "webrtc_video_stream.cc", 244 "webrtc_video_stream.cc",
241 ] 245 ]
242 } 246 }
243 } 247 }
244 } 248 }
245 249
246 static_library("test_support") { 250 static_library("test_support") {
247 testonly = true 251 testonly = true
248 252
249 sources = [ 253 sources = [
254 "fake_audio_source.cc",
255 "fake_audio_source.h",
250 "fake_authenticator.cc", 256 "fake_authenticator.cc",
251 "fake_authenticator.h", 257 "fake_authenticator.h",
252 "fake_connection_to_client.cc", 258 "fake_connection_to_client.cc",
253 "fake_connection_to_client.h", 259 "fake_connection_to_client.h",
254 "fake_connection_to_host.cc", 260 "fake_connection_to_host.cc",
255 "fake_connection_to_host.h", 261 "fake_connection_to_host.h",
256 "fake_datagram_socket.cc", 262 "fake_datagram_socket.cc",
257 "fake_datagram_socket.h", 263 "fake_datagram_socket.h",
258 "fake_desktop_capturer.cc", 264 "fake_desktop_capturer.cc",
259 "fake_desktop_capturer.h", 265 "fake_desktop_capturer.h",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 "port_range_unittest.cc", 313 "port_range_unittest.cc",
308 "ppapi_module_stub.cc", 314 "ppapi_module_stub.cc",
309 "pseudotcp_adapter_unittest.cc", 315 "pseudotcp_adapter_unittest.cc",
310 "session_config_unittest.cc", 316 "session_config_unittest.cc",
311 "spake2_authenticator_unittest.cc", 317 "spake2_authenticator_unittest.cc",
312 "ssl_hmac_channel_authenticator_unittest.cc", 318 "ssl_hmac_channel_authenticator_unittest.cc",
313 "third_party_authenticator_unittest.cc", 319 "third_party_authenticator_unittest.cc",
314 "v2_authenticator_unittest.cc", 320 "v2_authenticator_unittest.cc",
315 "validating_authenticator_unittest.cc", 321 "validating_authenticator_unittest.cc",
316 "video_frame_pump_unittest.cc", 322 "video_frame_pump_unittest.cc",
323 "webrtc_audio_source_adapter_unittest.cc",
317 "webrtc_transport_unittest.cc", 324 "webrtc_transport_unittest.cc",
318 ] 325 ]
319 326
320 deps = [ 327 deps = [
321 ":test_support", 328 ":test_support",
322 "//net:test_support", 329 "//net:test_support",
323 "//testing/gmock", 330 "//testing/gmock",
324 "//testing/gtest", 331 "//testing/gtest",
325 ] 332 ]
326 } 333 }
OLDNEW
« no previous file with comments | « remoting/host/chromoting_host.cc ('k') | remoting/protocol/audio_pump_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698