Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 1 | # Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license |
| 4 | # that can be found in the LICENSE file in the root of the source |
| 5 | # tree. An additional intellectual property rights grant can be found |
| 6 | # in the file PATENTS. All contributing project authors may |
| 7 | # be found in the AUTHORS file in the root of the source tree. |
| 8 | |
| 9 | import("../../../webrtc.gni") |
| 10 | |
| 11 | config("bwe_test_logging") { |
| 12 | if (rtc_enable_bwe_test_logging) { |
| 13 | defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ] |
| 14 | } else { |
| 15 | defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ] |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | rtc_static_library("goog_cc") { |
Mirko Bonadei | 50cfab7 | 2018-09-06 15:03:52 +0200 | [diff] [blame] | 20 | configs += [ ":bwe_test_logging" ] |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 21 | sources = [ |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 22 | "goog_cc_network_control.cc", |
| 23 | "goog_cc_network_control.h", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 24 | ] |
| 25 | |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 26 | deps = [ |
Sebastian Jansson | f9f49a3 | 2018-06-25 17:56:08 +0200 | [diff] [blame] | 27 | ":alr_detector", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 28 | ":delay_based_bwe", |
| 29 | ":estimators", |
Sebastian Jansson | b2ecc3d | 2018-07-13 17:22:01 +0200 | [diff] [blame] | 30 | ":probe_controller", |
Sebastian Jansson | 3bdbc84 | 2018-10-11 15:02:12 +0200 | [diff] [blame] | 31 | ":pushback_controller", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 32 | "../..:module_api", |
| 33 | "../../..:webrtc_common", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 34 | "../../../api/transport:field_trial_based_config", |
Sebastian Jansson | c6c4426 | 2018-05-09 10:33:39 +0200 | [diff] [blame] | 35 | "../../../api/transport:network_control", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 36 | "../../../api/transport:webrtc_key_value_config", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 37 | "../../../api/units:data_rate", |
| 38 | "../../../api/units:data_size", |
| 39 | "../../../api/units:time_delta", |
| 40 | "../../../api/units:timestamp", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 41 | "../../../logging:rtc_event_log_api", |
| 42 | "../../../logging:rtc_event_pacing", |
| 43 | "../../../rtc_base:checks", |
Sebastian Jansson | 2c79648 | 2019-02-26 15:43:44 +0100 | [diff] [blame] | 44 | "../../../rtc_base:logging", |
| 45 | "../../../rtc_base:macromagic", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 46 | "../../../rtc_base/experiments:alr_experiment", |
Sebastian Jansson | 5760632 | 2018-09-10 18:27:21 +0200 | [diff] [blame] | 47 | "../../../rtc_base/experiments:field_trial_parser", |
Erik Språng | 7121564 | 2019-01-21 16:30:55 +0100 | [diff] [blame] | 48 | "../../../rtc_base/experiments:rate_control_settings", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 49 | "../../../system_wrappers", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 50 | "../../bitrate_controller", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 51 | "../../remote_bitrate_estimator", |
| 52 | "../../rtp_rtcp:rtp_rtcp_format", |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 53 | "//third_party/abseil-cpp/absl/memory", |
Danil Chapovalov | 0040b66 | 2018-06-18 10:48:16 +0200 | [diff] [blame] | 54 | "//third_party/abseil-cpp/absl/types:optional", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 55 | ] |
| 56 | } |
| 57 | |
Sebastian Jansson | 051251f | 2018-11-29 18:36:42 +0100 | [diff] [blame] | 58 | rtc_source_set("link_capacity_estimator") { |
| 59 | sources = [ |
| 60 | "link_capacity_estimator.cc", |
| 61 | "link_capacity_estimator.h", |
| 62 | ] |
| 63 | deps = [ |
| 64 | "../../../api/units:data_rate", |
| 65 | "../../../rtc_base:safe_minmax", |
| 66 | "//third_party/abseil-cpp/absl/types:optional", |
| 67 | ] |
| 68 | } |
| 69 | |
Sebastian Jansson | 3bdbc84 | 2018-10-11 15:02:12 +0200 | [diff] [blame] | 70 | rtc_source_set("pushback_controller") { |
| 71 | sources = [ |
| 72 | "congestion_window_pushback_controller.cc", |
| 73 | "congestion_window_pushback_controller.h", |
| 74 | ] |
| 75 | deps = [ |
| 76 | "../../../api/transport:network_control", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 77 | "../../../api/transport:webrtc_key_value_config", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 78 | "../../../api/units:data_size", |
Sebastian Jansson | 3bdbc84 | 2018-10-11 15:02:12 +0200 | [diff] [blame] | 79 | "../../../rtc_base:checks", |
Erik Språng | 7121564 | 2019-01-21 16:30:55 +0100 | [diff] [blame] | 80 | "../../../rtc_base/experiments:rate_control_settings", |
Sebastian Jansson | 3bdbc84 | 2018-10-11 15:02:12 +0200 | [diff] [blame] | 81 | "//third_party/abseil-cpp/absl/types:optional", |
| 82 | ] |
| 83 | } |
| 84 | |
Sebastian Jansson | f9f49a3 | 2018-06-25 17:56:08 +0200 | [diff] [blame] | 85 | rtc_source_set("alr_detector") { |
| 86 | sources = [ |
| 87 | "alr_detector.cc", |
| 88 | "alr_detector.h", |
| 89 | ] |
Sebastian Jansson | f9f49a3 | 2018-06-25 17:56:08 +0200 | [diff] [blame] | 90 | deps = [ |
| 91 | "../../..:webrtc_common", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 92 | "../../../api/transport:webrtc_key_value_config", |
Sebastian Jansson | f9f49a3 | 2018-06-25 17:56:08 +0200 | [diff] [blame] | 93 | "../../../logging:rtc_event_log_api", |
| 94 | "../../../logging:rtc_event_pacing", |
| 95 | "../../../rtc_base:checks", |
Sebastian Jansson | 2c79648 | 2019-02-26 15:43:44 +0100 | [diff] [blame] | 96 | "../../../rtc_base:safe_conversions", |
Sebastian Jansson | 7db3bb9 | 2019-03-25 10:17:00 +0100 | [diff] [blame^] | 97 | "../../../rtc_base:timeutils", |
Sebastian Jansson | f9f49a3 | 2018-06-25 17:56:08 +0200 | [diff] [blame] | 98 | "../../../rtc_base/experiments:alr_experiment", |
Sebastian Jansson | f9f49a3 | 2018-06-25 17:56:08 +0200 | [diff] [blame] | 99 | "../../pacing:interval_budget", |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 100 | "//third_party/abseil-cpp/absl/memory", |
Sebastian Jansson | f9f49a3 | 2018-06-25 17:56:08 +0200 | [diff] [blame] | 101 | "//third_party/abseil-cpp/absl/types:optional", |
| 102 | ] |
| 103 | } |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 104 | rtc_source_set("estimators") { |
| 105 | configs += [ ":bwe_test_logging" ] |
| 106 | sources = [ |
| 107 | "acknowledged_bitrate_estimator.cc", |
| 108 | "acknowledged_bitrate_estimator.h", |
| 109 | "bitrate_estimator.cc", |
| 110 | "bitrate_estimator.h", |
| 111 | "delay_increase_detector_interface.h", |
| 112 | "median_slope_estimator.cc", |
| 113 | "median_slope_estimator.h", |
| 114 | "probe_bitrate_estimator.cc", |
| 115 | "probe_bitrate_estimator.h", |
| 116 | "trendline_estimator.cc", |
| 117 | "trendline_estimator.h", |
| 118 | ] |
| 119 | |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 120 | deps = [ |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 121 | "../../../api/transport:webrtc_key_value_config", |
Sebastian Jansson | b6787bc | 2018-11-19 18:01:17 +0100 | [diff] [blame] | 122 | "../../../api/units:data_rate", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 123 | "../../../logging:rtc_event_bwe", |
| 124 | "../../../logging:rtc_event_log_api", |
| 125 | "../../../rtc_base:checks", |
Sebastian Jansson | 2c79648 | 2019-02-26 15:43:44 +0100 | [diff] [blame] | 126 | "../../../rtc_base:logging", |
| 127 | "../../../rtc_base:macromagic", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 128 | "../../../rtc_base:rtc_numerics", |
Sebastian Jansson | 2c79648 | 2019-02-26 15:43:44 +0100 | [diff] [blame] | 129 | "../../../rtc_base:safe_conversions", |
Karl Wiberg | 12edf4c | 2018-03-07 14:18:56 +0100 | [diff] [blame] | 130 | "../../../rtc_base:safe_minmax", |
Sebastian Jansson | da0222b | 2018-12-21 14:14:43 +0100 | [diff] [blame] | 131 | "../../../rtc_base/experiments:field_trial_parser", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 132 | "../../remote_bitrate_estimator", |
| 133 | "../../rtp_rtcp:rtp_rtcp_format", |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 134 | "//third_party/abseil-cpp/absl/memory", |
Danil Chapovalov | 0040b66 | 2018-06-18 10:48:16 +0200 | [diff] [blame] | 135 | "//third_party/abseil-cpp/absl/types:optional", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 136 | ] |
| 137 | } |
| 138 | |
| 139 | rtc_source_set("delay_based_bwe") { |
| 140 | configs += [ ":bwe_test_logging" ] |
| 141 | sources = [ |
| 142 | "delay_based_bwe.cc", |
| 143 | "delay_based_bwe.h", |
| 144 | ] |
| 145 | |
| 146 | deps = [ |
| 147 | ":estimators", |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 148 | "../../../api/transport:network_control", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 149 | "../../../api/transport:webrtc_key_value_config", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 150 | "../../../logging:rtc_event_bwe", |
| 151 | "../../../logging:rtc_event_log_api", |
| 152 | "../../../rtc_base:checks", |
| 153 | "../../../rtc_base:rtc_base_approved", |
Sebastian Jansson | da0222b | 2018-12-21 14:14:43 +0100 | [diff] [blame] | 154 | "../../../rtc_base/experiments:field_trial_parser", |
Mirko Bonadei | 17f4878 | 2018-09-28 08:51:10 +0200 | [diff] [blame] | 155 | "../../../system_wrappers:metrics", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 156 | "../../pacing", |
| 157 | "../../remote_bitrate_estimator", |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 158 | "../../rtp_rtcp:rtp_rtcp_format", |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 159 | "//third_party/abseil-cpp/absl/memory", |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 160 | "//third_party/abseil-cpp/absl/types:optional", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 161 | ] |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 162 | } |
| 163 | |
Sebastian Jansson | b2ecc3d | 2018-07-13 17:22:01 +0200 | [diff] [blame] | 164 | rtc_source_set("probe_controller") { |
| 165 | sources = [ |
| 166 | "probe_controller.cc", |
| 167 | "probe_controller.h", |
| 168 | ] |
| 169 | |
| 170 | deps = [ |
| 171 | "../../../api/transport:network_control", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 172 | "../../../api/transport:webrtc_key_value_config", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 173 | "../../../api/units:data_rate", |
| 174 | "../../../api/units:time_delta", |
| 175 | "../../../api/units:timestamp", |
Piotr (Peter) Slatala | c39f462 | 2019-02-15 07:38:04 -0800 | [diff] [blame] | 176 | "../../../logging:rtc_event_bwe", |
Sebastian Jansson | b2ecc3d | 2018-07-13 17:22:01 +0200 | [diff] [blame] | 177 | "../../../logging:rtc_event_log_api", |
| 178 | "../../../logging:rtc_event_pacing", |
| 179 | "../../../rtc_base:checks", |
Sebastian Jansson | 2c79648 | 2019-02-26 15:43:44 +0100 | [diff] [blame] | 180 | "../../../rtc_base:logging", |
| 181 | "../../../rtc_base:macromagic", |
| 182 | "../../../rtc_base:safe_conversions", |
Jonas Olsson | e096004 | 2019-03-12 13:49:26 +0100 | [diff] [blame] | 183 | "../../../rtc_base/experiments:field_trial_parser", |
Sebastian Jansson | da2ec40 | 2018-08-02 16:27:28 +0200 | [diff] [blame] | 184 | "../../../rtc_base/system:unused", |
Mirko Bonadei | 17f4878 | 2018-09-28 08:51:10 +0200 | [diff] [blame] | 185 | "../../../system_wrappers:metrics", |
Artem Titov | 533a9fe | 2019-03-21 12:18:05 +0100 | [diff] [blame] | 186 | "//third_party/abseil-cpp/absl/memory", |
Sebastian Jansson | b2ecc3d | 2018-07-13 17:22:01 +0200 | [diff] [blame] | 187 | "//third_party/abseil-cpp/absl/types:optional", |
| 188 | ] |
Sebastian Jansson | b2ecc3d | 2018-07-13 17:22:01 +0200 | [diff] [blame] | 189 | } |
| 190 | |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 191 | if (rtc_include_tests) { |
Sebastian Jansson | 13171bd | 2018-07-03 18:11:45 +0200 | [diff] [blame] | 192 | rtc_source_set("test_goog_cc_printer") { |
| 193 | testonly = true |
| 194 | sources = [ |
| 195 | "test/goog_cc_printer.cc", |
| 196 | "test/goog_cc_printer.h", |
| 197 | ] |
| 198 | deps = [ |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 199 | ":alr_detector", |
| 200 | ":delay_based_bwe", |
Sebastian Jansson | d0e0ec9 | 2018-09-04 18:55:14 +0200 | [diff] [blame] | 201 | ":estimators", |
Sebastian Jansson | 13171bd | 2018-07-03 18:11:45 +0200 | [diff] [blame] | 202 | ":goog_cc", |
| 203 | "..:test_controller_printer", |
Sebastian Jansson | c87b8c1 | 2018-10-09 19:02:03 +0200 | [diff] [blame] | 204 | "../../../api/transport:goog_cc", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 205 | "../../../api/transport:network_control", |
| 206 | "../../../api/units:timestamp", |
| 207 | "../../../logging:rtc_event_log_api", |
| 208 | "../../../rtc_base:checks", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 209 | "../../remote_bitrate_estimator", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 210 | "//third_party/abseil-cpp/absl/types:optional", |
Sebastian Jansson | 13171bd | 2018-07-03 18:11:45 +0200 | [diff] [blame] | 211 | ] |
| 212 | } |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 213 | rtc_source_set("goog_cc_unittests") { |
| 214 | testonly = true |
| 215 | |
| 216 | sources = [ |
| 217 | "acknowledged_bitrate_estimator_unittest.cc", |
| 218 | "alr_detector_unittest.cc", |
Sebastian Jansson | 3bdbc84 | 2018-10-11 15:02:12 +0200 | [diff] [blame] | 219 | "congestion_window_pushback_controller_unittest.cc", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 220 | "delay_based_bwe_unittest.cc", |
| 221 | "delay_based_bwe_unittest_helper.cc", |
| 222 | "delay_based_bwe_unittest_helper.h", |
Sebastian Jansson | 34ee419 | 2018-08-30 14:57:40 +0200 | [diff] [blame] | 223 | "goog_cc_network_control_unittest.cc", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 224 | "median_slope_estimator_unittest.cc", |
| 225 | "probe_bitrate_estimator_unittest.cc", |
| 226 | "probe_controller_unittest.cc", |
| 227 | "trendline_estimator_unittest.cc", |
| 228 | ] |
| 229 | deps = [ |
Sebastian Jansson | f9f49a3 | 2018-06-25 17:56:08 +0200 | [diff] [blame] | 230 | ":alr_detector", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 231 | ":delay_based_bwe", |
| 232 | ":estimators", |
| 233 | ":goog_cc", |
Sebastian Jansson | b2ecc3d | 2018-07-13 17:22:01 +0200 | [diff] [blame] | 234 | ":probe_controller", |
Sebastian Jansson | 3bdbc84 | 2018-10-11 15:02:12 +0200 | [diff] [blame] | 235 | ":pushback_controller", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 236 | "../../../api/transport:field_trial_based_config", |
Sebastian Jansson | c87b8c1 | 2018-10-09 19:02:03 +0200 | [diff] [blame] | 237 | "../../../api/transport:goog_cc", |
Sebastian Jansson | c6c4426 | 2018-05-09 10:33:39 +0200 | [diff] [blame] | 238 | "../../../api/transport:network_control", |
| 239 | "../../../api/transport:network_control_test", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 240 | "../../../api/transport:webrtc_key_value_config", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 241 | "../../../api/units:data_rate", |
| 242 | "../../../api/units:timestamp", |
Sebastian Jansson | 34ee419 | 2018-08-30 14:57:40 +0200 | [diff] [blame] | 243 | "../../../logging:mocks", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 244 | "../../../rtc_base:checks", |
| 245 | "../../../rtc_base:rtc_base_approved", |
| 246 | "../../../rtc_base:rtc_base_tests_utils", |
| 247 | "../../../rtc_base/experiments:alr_experiment", |
| 248 | "../../../system_wrappers", |
| 249 | "../../../test:field_trial", |
| 250 | "../../../test:test_support", |
Sebastian Jansson | 71a091e | 2018-09-27 19:08:21 +0200 | [diff] [blame] | 251 | "../../../test/scenario", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 252 | "../../pacing", |
| 253 | "../../remote_bitrate_estimator", |
| 254 | "../../rtp_rtcp:rtp_rtcp_format", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 255 | "//testing/gmock", |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 256 | "//third_party/abseil-cpp/absl/memory", |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 257 | ] |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 258 | } |
Sebastian Jansson | 449c1c0 | 2018-10-22 17:18:46 +0200 | [diff] [blame] | 259 | rtc_source_set("goog_cc_slow_tests") { |
| 260 | testonly = true |
| 261 | |
| 262 | sources = [ |
| 263 | "goog_cc_network_control_slowtest.cc", |
| 264 | ] |
Sebastian Jansson | 449c1c0 | 2018-10-22 17:18:46 +0200 | [diff] [blame] | 265 | deps = [ |
| 266 | ":alr_detector", |
| 267 | ":delay_based_bwe", |
| 268 | ":estimators", |
| 269 | ":goog_cc", |
| 270 | ":probe_controller", |
| 271 | ":pushback_controller", |
| 272 | "../../../api/transport:goog_cc", |
| 273 | "../../../api/transport:network_control", |
| 274 | "../../../api/transport:network_control_test", |
Sebastian Jansson | 95edb03 | 2019-01-17 16:24:12 +0100 | [diff] [blame] | 275 | "../../../api/transport:webrtc_key_value_config", |
Sebastian Jansson | 449c1c0 | 2018-10-22 17:18:46 +0200 | [diff] [blame] | 276 | "../../../logging:mocks", |
| 277 | "../../../rtc_base:checks", |
| 278 | "../../../rtc_base:rtc_base_approved", |
Sebastian Jansson | 449c1c0 | 2018-10-22 17:18:46 +0200 | [diff] [blame] | 279 | "../../../rtc_base/experiments:alr_experiment", |
| 280 | "../../../system_wrappers", |
Sebastian Jansson | 449c1c0 | 2018-10-22 17:18:46 +0200 | [diff] [blame] | 281 | "../../../test:field_trial", |
| 282 | "../../../test:test_support", |
| 283 | "../../../test/scenario", |
| 284 | "../../pacing", |
| 285 | "../../remote_bitrate_estimator", |
| 286 | "../../rtp_rtcp:rtp_rtcp_format", |
| 287 | "//testing/gmock", |
| 288 | "//third_party/abseil-cpp/absl/memory", |
| 289 | ] |
| 290 | } |
Sebastian Jansson | fc7ec8e | 2018-02-28 16:48:00 +0100 | [diff] [blame] | 291 | } |