| Index: webrtc/audio/BUILD.gn
|
| diff --git a/webrtc/audio/BUILD.gn b/webrtc/audio/BUILD.gn
|
| index bde074d99ab7f029f83190a27d58e9fdc463364c..30d84ac8d6ab3178d254cc32b7b93571a61a20c1 100644
|
| --- a/webrtc/audio/BUILD.gn
|
| +++ b/webrtc/audio/BUILD.gn
|
| @@ -32,9 +32,14 @@ rtc_static_library("audio") {
|
| "../api:audio_mixer_api",
|
| "../api:call_api",
|
| "../base:rtc_base_approved",
|
| + "../base:rtc_task_queue",
|
| "../common_audio",
|
| "../modules/audio_device",
|
| "../modules/audio_processing",
|
| + "../modules/congestion_controller:congestion_controller",
|
| + "../modules/pacing:pacing",
|
| + "../modules/remote_bitrate_estimator:remote_bitrate_estimator",
|
| + "../modules/rtp_rtcp:rtp_rtcp",
|
| "../system_wrappers",
|
| "../voice_engine",
|
| ]
|
| @@ -42,6 +47,11 @@ rtc_static_library("audio") {
|
| if (rtc_include_tests) {
|
| rtc_source_set("audio_tests") {
|
| testonly = true
|
| +
|
| + # TODO(kjellander): Remove (bugs.webrtc.org/6828)
|
| + # This needs remote_bitrate_estimator to be moved to webrtc/api first.
|
| + check_includes = false
|
| +
|
| sources = [
|
| "audio_receive_stream_unittest.cc",
|
| "audio_send_stream_unittest.cc",
|
| @@ -52,8 +62,11 @@ if (rtc_include_tests) {
|
| ":audio",
|
| "../api:mock_audio_mixer",
|
| "../base:rtc_base_approved",
|
| + "../base:rtc_task_queue",
|
| "../modules/audio_device:mock_audio_device",
|
| "../modules/audio_mixer:audio_mixer_impl",
|
| + "../modules/congestion_controller:congestion_controller",
|
| + "../modules/pacing:pacing",
|
| "../test:test_common",
|
| "../test:test_support",
|
| "utility:audio_frame_operations",
|
|
|