aboutsummaryrefslogtreecommitdiff
path: root/modules/remote_bitrate_estimator/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'modules/remote_bitrate_estimator/BUILD.gn')
-rw-r--r--modules/remote_bitrate_estimator/BUILD.gn10
1 files changed, 7 insertions, 3 deletions
diff --git a/modules/remote_bitrate_estimator/BUILD.gn b/modules/remote_bitrate_estimator/BUILD.gn
index 81aa1efdda..923f00a74c 100644
--- a/modules/remote_bitrate_estimator/BUILD.gn
+++ b/modules/remote_bitrate_estimator/BUILD.gn
@@ -21,6 +21,8 @@ rtc_library("remote_bitrate_estimator") {
"overuse_detector.h",
"overuse_estimator.cc",
"overuse_estimator.h",
+ "packet_arrival_map.cc",
+ "packet_arrival_map.h",
"remote_bitrate_estimator_abs_send_time.cc",
"remote_bitrate_estimator_abs_send_time.h",
"remote_bitrate_estimator_single_stream.cc",
@@ -45,6 +47,8 @@ rtc_library("remote_bitrate_estimator") {
"../../api/transport:network_control",
"../../api/transport:webrtc_key_value_config",
"../../api/units:data_rate",
+ "../../api/units:data_size",
+ "../../api/units:time_delta",
"../../api/units:timestamp",
"../../modules:module_api",
"../../modules:module_api_public",
@@ -74,10 +78,9 @@ if (!build_with_chromium) {
"tools/bwe_rtp.h",
]
deps = [
- ":remote_bitrate_estimator",
"../../rtc_base:rtc_base_approved",
"../../test:rtp_test_utils",
- "../rtp_rtcp",
+ "../rtp_rtcp:rtp_rtcp_format",
]
absl_deps = [
"//third_party/abseil-cpp/absl/flags:flag",
@@ -90,10 +93,10 @@ if (!build_with_chromium) {
sources = [ "tools/rtp_to_text.cc" ]
deps = [
":bwe_rtp",
- "../../modules/rtp_rtcp",
"../../rtc_base:macromagic",
"../../rtc_base:stringutils",
"../../test:rtp_test_utils",
+ "../rtp_rtcp:rtp_rtcp_format",
]
}
}
@@ -106,6 +109,7 @@ if (rtc_include_tests) {
"aimd_rate_control_unittest.cc",
"inter_arrival_unittest.cc",
"overuse_detector_unittest.cc",
+ "packet_arrival_map_test.cc",
"remote_bitrate_estimator_abs_send_time_unittest.cc",
"remote_bitrate_estimator_single_stream_unittest.cc",
"remote_bitrate_estimator_unittest_helper.cc",