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

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2390883004: Hooking up audio network adaptor to VoE. (Closed)
Patch Set: adding a comment 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
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 10
(...skipping 12 matching lines...) Expand all
23 "include/voe_external_media.h", 23 "include/voe_external_media.h",
24 "include/voe_file.h", 24 "include/voe_file.h",
25 "include/voe_hardware.h", 25 "include/voe_hardware.h",
26 "include/voe_neteq_stats.h", 26 "include/voe_neteq_stats.h",
27 "include/voe_network.h", 27 "include/voe_network.h",
28 "include/voe_rtp_rtcp.h", 28 "include/voe_rtp_rtcp.h",
29 "include/voe_video_sync.h", 29 "include/voe_video_sync.h",
30 "include/voe_volume_control.h", 30 "include/voe_volume_control.h",
31 "monitor_module.cc", 31 "monitor_module.cc",
32 "monitor_module.h", 32 "monitor_module.h",
33 "network_predictor.cc",
34 "network_predictor.h",
35 "output_mixer.cc", 33 "output_mixer.cc",
36 "output_mixer.h", 34 "output_mixer.h",
37 "shared_data.cc", 35 "shared_data.cc",
38 "shared_data.h", 36 "shared_data.h",
39 "statistics.cc", 37 "statistics.cc",
40 "statistics.h", 38 "statistics.h",
41 "transmit_mixer.cc", 39 "transmit_mixer.cc",
42 "transmit_mixer.h", 40 "transmit_mixer.h",
43 "utility.cc", 41 "utility.cc",
44 "utility.h", 42 "utility.h",
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "//webrtc/test:test_support_main", 197 "//webrtc/test:test_support_main",
200 ] 198 ]
201 199
202 if (is_android) { 200 if (is_android) {
203 deps += [ "//testing/android/native_test:native_test_native_code" ] 201 deps += [ "//testing/android/native_test:native_test_native_code" ]
204 shard_timeout = 900 202 shard_timeout = 900
205 } 203 }
206 204
207 sources = [ 205 sources = [
208 "channel_unittest.cc", 206 "channel_unittest.cc",
209 "network_predictor_unittest.cc",
210 "test/channel_transport/udp_socket_manager_unittest.cc", 207 "test/channel_transport/udp_socket_manager_unittest.cc",
211 "test/channel_transport/udp_socket_wrapper_unittest.cc", 208 "test/channel_transport/udp_socket_wrapper_unittest.cc",
212 "test/channel_transport/udp_transport_unittest.cc", 209 "test/channel_transport/udp_transport_unittest.cc",
213 "transmit_mixer_unittest.cc", 210 "transmit_mixer_unittest.cc",
214 "utility_unittest.cc", 211 "utility_unittest.cc",
215 "voe_audio_processing_unittest.cc", 212 "voe_audio_processing_unittest.cc",
216 "voe_base_unittest.cc", 213 "voe_base_unittest.cc",
217 "voe_codec_unittest.cc", 214 "voe_codec_unittest.cc",
218 "voe_network_unittest.cc", 215 "voe_network_unittest.cc",
219 "voice_engine_fixture.cc", 216 "voice_engine_fixture.cc",
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 } 345 }
349 346
350 if (is_clang) { 347 if (is_clang) {
351 # Suppress warnings from Chrome's Clang plugins. 348 # Suppress warnings from Chrome's Clang plugins.
352 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 349 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
353 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 350 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
354 } 351 }
355 } 352 }
356 } 353 }
357 } 354 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/include/audio_coding_module.h ('k') | webrtc/voice_engine/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698