Index: webrtc/modules/congestion_controller/BUILD.gn |
diff --git a/webrtc/modules/congestion_controller/BUILD.gn b/webrtc/modules/congestion_controller/BUILD.gn |
index dbfd56b4457a2e336819f3c15d8c8fa020dd3007..c3ee11fd5455239f4f6b024028290a4d4a02e0af 100644 |
--- a/webrtc/modules/congestion_controller/BUILD.gn |
+++ b/webrtc/modules/congestion_controller/BUILD.gn |
@@ -10,8 +10,10 @@ import("../../webrtc.gni") |
rtc_static_library("congestion_controller") { |
sources = [ |
- "acknowledge_bitrate_estimator.cc", |
- "acknowledge_bitrate_estimator.h", |
+ "acknowledged_bitrate_estimator.cc", |
+ "acknowledged_bitrate_estimator.h", |
+ "bitrate_estimator.cc", |
+ "bitrate_estimator.h", |
"congestion_controller.cc", |
"delay_based_bwe.cc", |
"delay_based_bwe.h", |
@@ -73,6 +75,7 @@ if (rtc_include_tests) { |
visibility = [ "..:modules_unittests" ] |
} |
sources = [ |
+ "acknowledged_bitrate_estimator_unittest.cc", |
"congestion_controller_unittest.cc", |
"congestion_controller_unittests_helper.cc", |
"congestion_controller_unittests_helper.h", |
@@ -90,6 +93,7 @@ if (rtc_include_tests) { |
":mock_congestion_controller", |
"../../base:rtc_base", |
"../../base:rtc_base_approved", |
+ "../../base:rtc_base_tests_utils", |
"../../system_wrappers:system_wrappers", |
"../../test:field_trial", |
"../../test:test_support", |