2018-02-27 17:07:02 +01:00
|
|
|
# Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
#
|
|
|
|
|
# Use of this source code is governed by a BSD-style license
|
|
|
|
|
# that can be found in the LICENSE file in the root of the source
|
|
|
|
|
# tree. An additional intellectual property rights grant can be found
|
|
|
|
|
# in the file PATENTS. All contributing project authors may
|
|
|
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
|
|
|
|
|
import("../../../webrtc.gni")
|
|
|
|
|
|
2019-10-17 21:32:04 +02:00
|
|
|
rtc_library("control_handler") {
|
2018-10-15 14:31:24 +02:00
|
|
|
visibility = [ "*" ]
|
|
|
|
|
sources = [
|
|
|
|
|
"control_handler.cc",
|
|
|
|
|
"control_handler.h",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
deps = [
|
2021-02-10 14:31:24 +01:00
|
|
|
"../../../api:sequence_checker",
|
2018-10-15 14:31:24 +02:00
|
|
|
"../../../api/transport:network_control",
|
2018-11-28 16:47:49 +01:00
|
|
|
"../../../api/units:data_rate",
|
|
|
|
|
"../../../api/units:data_size",
|
|
|
|
|
"../../../api/units:time_delta",
|
2018-10-15 14:31:24 +02:00
|
|
|
"../../../rtc_base:checks",
|
2022-04-04 15:06:30 +02:00
|
|
|
"../../../rtc_base:logging",
|
2022-04-04 17:04:37 +02:00
|
|
|
"../../../rtc_base:safe_conversions",
|
2018-10-15 14:31:24 +02:00
|
|
|
"../../../rtc_base:safe_minmax",
|
2020-11-23 11:07:42 +01:00
|
|
|
"../../../rtc_base/system:no_unique_address",
|
2018-10-15 14:31:24 +02:00
|
|
|
"../../pacing",
|
|
|
|
|
]
|
|
|
|
|
}
|
2019-10-17 21:32:04 +02:00
|
|
|
rtc_library("transport_feedback") {
|
2018-02-27 17:07:02 +01:00
|
|
|
visibility = [ "*" ]
|
|
|
|
|
sources = [
|
|
|
|
|
"transport_feedback_adapter.cc",
|
|
|
|
|
"transport_feedback_adapter.h",
|
2020-01-15 18:24:20 +00:00
|
|
|
"transport_feedback_demuxer.cc",
|
|
|
|
|
"transport_feedback_demuxer.h",
|
2018-02-27 17:07:02 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
deps = [
|
2019-09-23 10:31:16 +02:00
|
|
|
"../..:module_api_public",
|
2021-02-10 14:31:24 +01:00
|
|
|
"../../../api:sequence_checker",
|
2018-09-17 13:11:50 +02:00
|
|
|
"../../../api/transport:network_control",
|
2018-10-15 14:24:03 +02:00
|
|
|
"../../../api/units:data_size",
|
2018-11-28 16:47:49 +01:00
|
|
|
"../../../api/units:timestamp",
|
2018-02-27 17:07:02 +01:00
|
|
|
"../../../rtc_base:checks",
|
2022-04-04 15:06:30 +02:00
|
|
|
"../../../rtc_base:logging",
|
2022-04-04 15:18:46 +02:00
|
|
|
"../../../rtc_base:macromagic",
|
2023-01-04 12:01:09 +01:00
|
|
|
"../../../rtc_base:network_route",
|
2023-01-09 13:42:15 +00:00
|
|
|
"../../../rtc_base:rtc_numerics",
|
2018-10-15 14:24:03 +02:00
|
|
|
"../../../rtc_base/network:sent_packet",
|
2020-07-07 22:03:26 +02:00
|
|
|
"../../../rtc_base/synchronization:mutex",
|
2022-01-24 12:08:36 +01:00
|
|
|
"../../../rtc_base/system:no_unique_address",
|
2018-02-27 17:07:02 +01:00
|
|
|
"../../../system_wrappers",
|
2019-04-18 14:28:02 +02:00
|
|
|
"../../../system_wrappers:field_trial",
|
2018-02-27 17:07:02 +01:00
|
|
|
"../../rtp_rtcp:rtp_rtcp_format",
|
2019-10-29 17:18:51 +01:00
|
|
|
"//third_party/abseil-cpp/absl/algorithm:container",
|
2018-02-27 17:07:02 +01:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (rtc_include_tests) {
|
2019-10-17 21:32:04 +02:00
|
|
|
rtc_library("congestion_controller_unittests") {
|
2018-02-27 17:07:02 +01:00
|
|
|
testonly = true
|
|
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
|
"transport_feedback_adapter_unittest.cc",
|
2020-01-15 18:24:20 +00:00
|
|
|
"transport_feedback_demuxer_unittest.cc",
|
2018-02-27 17:07:02 +01:00
|
|
|
]
|
|
|
|
|
deps = [
|
|
|
|
|
":transport_feedback",
|
2018-02-28 13:07:28 +01:00
|
|
|
"../:congestion_controller",
|
2018-05-09 10:33:39 +02:00
|
|
|
"../../../api/transport:network_control",
|
2018-02-27 17:07:02 +01:00
|
|
|
"../../../logging:mocks",
|
|
|
|
|
"../../../rtc_base:checks",
|
2022-04-04 17:04:37 +02:00
|
|
|
"../../../rtc_base:safe_conversions",
|
2018-10-15 21:06:26 +02:00
|
|
|
"../../../rtc_base/network:sent_packet",
|
2018-02-27 17:07:02 +01:00
|
|
|
"../../../system_wrappers",
|
|
|
|
|
"../../../test:field_trial",
|
|
|
|
|
"../../../test:test_support",
|
2019-03-21 13:35:10 +01:00
|
|
|
"../../pacing",
|
|
|
|
|
"../../remote_bitrate_estimator",
|
2018-02-27 17:07:02 +01:00
|
|
|
"../../rtp_rtcp:rtp_rtcp_format",
|
|
|
|
|
"//testing/gmock",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|