| Index: webrtc/call/BUILD.gn
|
| diff --git a/webrtc/call/BUILD.gn b/webrtc/call/BUILD.gn
|
| index 680ec6bd2fe8a2704808abd3b31518d42896f277..95db035b48fc74e71fdff50664d39a04f676f1e4 100644
|
| --- a/webrtc/call/BUILD.gn
|
| +++ b/webrtc/call/BUILD.gn
|
| @@ -19,6 +19,15 @@ rtc_source_set("call_interfaces") {
|
| "syncable.cc",
|
| "syncable.h",
|
| ]
|
| + deps = [
|
| + "..:webrtc_common",
|
| + "../api:audio_mixer_api",
|
| + "../api:transport_api",
|
| + "../api/audio_codecs:audio_codecs_api",
|
| + "../base:rtc_base",
|
| + "../base:rtc_base_approved",
|
| + "../modules/audio_coding:audio_encoder_interface",
|
| + ]
|
| }
|
|
|
| rtc_static_library("call") {
|
| @@ -45,9 +54,13 @@ rtc_static_library("call") {
|
| "../api:transport_api",
|
| "../audio",
|
| "../base:rtc_task_queue",
|
| + "../logging:rtc_event_log_api",
|
| "../logging:rtc_event_log_impl",
|
| + "../modules/bitrate_controller",
|
| "../modules/congestion_controller",
|
| + "../modules/pacing",
|
| "../modules/rtp_rtcp",
|
| + "../modules/utility",
|
| "../system_wrappers",
|
| "../video",
|
| ]
|
| @@ -65,9 +78,17 @@ if (rtc_include_tests) {
|
| deps = [
|
| ":call",
|
| "../base:rtc_base_approved",
|
| + "../logging:rtc_event_log_api",
|
| "../modules/audio_device:mock_audio_device",
|
| "../modules/audio_mixer",
|
| + "../modules/bitrate_controller",
|
| + "../modules/pacing",
|
| + "../modules/rtp_rtcp",
|
| + "../system_wrappers",
|
| + "../test:direct_transport",
|
| "../test:test_common",
|
| + "../test:test_support",
|
| + "../test:video_test_common",
|
| "//testing/gmock",
|
| "//testing/gtest",
|
| ]
|
| @@ -85,6 +106,20 @@ if (rtc_include_tests) {
|
| "rampup_tests.h",
|
| ]
|
| deps = [
|
| + ":call_interfaces",
|
| + "..:webrtc_common",
|
| + "../base:rtc_base_approved",
|
| + "../logging:rtc_event_log_api",
|
| + "../modules/audio_coding",
|
| + "../modules/audio_mixer:audio_mixer_impl",
|
| + "../modules/rtp_rtcp",
|
| + "../system_wrappers",
|
| + "../system_wrappers:metrics_default",
|
| + "../test:direct_transport",
|
| + "../test:test_support",
|
| + "../test:video_test_common",
|
| + "../video",
|
| + "../voice_engine",
|
| "//testing/gtest",
|
| "//webrtc/test:test_common",
|
| ]
|
|
|