diff --git a/call/BUILD.gn b/call/BUILD.gn index 1abe131a5e..3871928242 100644 --- a/call/BUILD.gn +++ b/call/BUILD.gn @@ -313,6 +313,10 @@ if (rtc_include_tests) { ] deps = [ ":rtp_interfaces", + "../modules/congestion_controller", + "../modules/pacing", + "../rtc_base:rate_limiter", + "../rtc_base:rtc_base", "../test:test_support", ] } diff --git a/call/test/mock_rtp_transport_controller_send.h b/call/test/mock_rtp_transport_controller_send.h index 6c9b47cba4..4870007cb5 100644 --- a/call/test/mock_rtp_transport_controller_send.h +++ b/call/test/mock_rtp_transport_controller_send.h @@ -13,7 +13,13 @@ #include +#include "call/bitrate_constraints.h" #include "call/rtp_transport_controller_send_interface.h" +#include "modules/congestion_controller/include/network_changed_observer.h" +#include "modules/pacing/packet_router.h" +#include "rtc_base/networkroute.h" +#include "rtc_base/rate_limiter.h" +#include "rtc_base/socket.h" #include "test/gmock.h" namespace webrtc {