blob: a5dd014e242372055a0a79ce0f1094e3a46de4bc [file] [log] [blame]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +00001# Copyright (c) 2014 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
mbonadei9aa3f0a2017-01-24 06:58:22 -08009import("../../webrtc.gni")
kjellanderfb114242016-06-13 00:19:48 -070010
kjellanderb62dbbe2016-09-23 00:38:52 -070011rtc_static_library("remote_bitrate_estimator") {
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000012 sources = [
pbos@webrtc.org9f79fe62014-12-04 15:34:06 +000013 "aimd_rate_control.cc",
14 "aimd_rate_control.h",
stefan64636dd2016-08-03 00:29:03 -070015 "bwe_defines.cc",
kjellander5c1d0432016-06-09 02:40:58 -070016 "include/bwe_defines.h",
17 "include/remote_bitrate_estimator.h",
sprang318673c2015-09-04 04:43:21 -070018 "include/send_time_history.h",
pbos@webrtc.org9f79fe62014-12-04 15:34:06 +000019 "inter_arrival.cc",
20 "inter_arrival.h",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000021 "overuse_detector.cc",
22 "overuse_detector.h",
pbos@webrtc.org9f79fe62014-12-04 15:34:06 +000023 "overuse_estimator.cc",
24 "overuse_estimator.h",
25 "remote_bitrate_estimator_abs_send_time.cc",
kjellander5c1d0432016-06-09 02:40:58 -070026 "remote_bitrate_estimator_abs_send_time.h",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000027 "remote_bitrate_estimator_single_stream.cc",
kjellander5c1d0432016-06-09 02:40:58 -070028 "remote_bitrate_estimator_single_stream.h",
Erik Språng6b8d3552015-09-24 15:06:57 +020029 "remote_estimator_proxy.cc",
30 "remote_estimator_proxy.h",
sprang318673c2015-09-04 04:43:21 -070031 "send_time_history.cc",
kjellander5c1d0432016-06-09 02:40:58 -070032 "test/bwe_test_logging.h",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000033 ]
kjellander@webrtc.org9bef5512014-07-13 09:02:54 +000034
gaetano.carlucci61050f62016-09-30 06:29:54 -070035 if (rtc_enable_bwe_test_logging) {
36 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ]
37 sources += [ "test/bwe_test_logging.cc" ]
38 } else {
39 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ]
brucedawson07df20b2016-05-22 17:15:02 -070040 }
41
kjellandere40a7ee2016-10-16 23:56:12 -070042 if (!build_with_chromium && is_clang) {
43 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -070044 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander@webrtc.org42ee5b52014-08-25 14:15:35 +000045 }
kjellander5c1d0432016-06-09 02:40:58 -070046
47 deps = [
48 "../..:webrtc_common",
Patrik Höglund3e113432017-12-15 14:40:10 +010049 "../../:typedefs",
Danil Chapovalov599df852017-09-25 15:19:35 +020050 "../../api:optional",
51 "../../modules:module_api",
52 "../../modules/rtp_rtcp:rtp_rtcp_format",
Patrik Höglunda8005cf2017-12-13 16:05:42 +010053 "../../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -070054 "../../rtc_base:rtc_base_approved",
kjellander5c1d0432016-06-09 02:40:58 -070055 "../../system_wrappers",
Mirko Bonadeia498ae82017-12-06 09:17:14 +010056 "../../system_wrappers:field_trial_api",
57 "../../system_wrappers:metrics_api",
kjellander5c1d0432016-06-09 02:40:58 -070058 ]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000059}
kjellanderfb114242016-06-13 00:19:48 -070060
mbonadei2877eaf2017-09-05 03:01:45 -070061if (!build_with_chromium) {
62 rtc_source_set("bwe_rtp") {
63 testonly = true
64 sources = [
65 "tools/bwe_rtp.cc",
66 "tools/bwe_rtp.h",
67 ]
68 deps = [
69 ":remote_bitrate_estimator",
70 "../../rtc_base:rtc_base_approved",
71 "../../test:rtp_test_utils",
Mirko Bonadeib5728d92017-12-06 07:51:33 +010072 "../rtp_rtcp",
mbonadei2877eaf2017-09-05 03:01:45 -070073 ]
74 if (is_clang) {
75 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
76 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
77 }
78 }
79}
80
kjellanderfb114242016-06-13 00:19:48 -070081if (rtc_include_tests) {
terelius3dcfd642016-10-07 00:39:56 -070082 rtc_static_library("bwe_simulator_lib") {
kjellanderfb114242016-06-13 00:19:48 -070083 testonly = true
84 sources = [
gnisha36165c2017-08-20 09:19:58 -070085 "test/bbr_paced_sender.cc",
86 "test/bbr_paced_sender.h",
kjellanderfb114242016-06-13 00:19:48 -070087 "test/bwe.cc",
88 "test/bwe.h",
89 "test/bwe_test.cc",
90 "test/bwe_test.h",
91 "test/bwe_test_baselinefile.cc",
92 "test/bwe_test_baselinefile.h",
93 "test/bwe_test_fileutils.cc",
94 "test/bwe_test_fileutils.h",
95 "test/bwe_test_framework.cc",
96 "test/bwe_test_framework.h",
97 "test/bwe_test_logging.h",
gnish6dcdf102017-06-05 06:01:26 -070098 "test/estimators/bbr.cc",
99 "test/estimators/bbr.h",
gnish157cbbd2017-07-18 02:50:22 -0700100 "test/estimators/congestion_window.cc",
gnish6dcdf102017-06-05 06:01:26 -0700101 "test/estimators/congestion_window.h",
gnish191113a2017-07-05 05:00:46 -0700102 "test/estimators/max_bandwidth_filter.cc",
gnish6dcdf102017-06-05 06:01:26 -0700103 "test/estimators/max_bandwidth_filter.h",
104 "test/estimators/min_rtt_filter.h",
kjellanderfb114242016-06-13 00:19:48 -0700105 "test/estimators/nada.cc",
106 "test/estimators/nada.h",
107 "test/estimators/remb.cc",
108 "test/estimators/remb.h",
109 "test/estimators/send_side.cc",
110 "test/estimators/send_side.h",
111 "test/estimators/tcp.cc",
112 "test/estimators/tcp.h",
113 "test/metric_recorder.cc",
114 "test/metric_recorder.h",
115 "test/packet.h",
116 "test/packet_receiver.cc",
117 "test/packet_receiver.h",
118 "test/packet_sender.cc",
119 "test/packet_sender.h",
120 ]
121
122 if (rtc_enable_bwe_test_logging) {
123 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ]
kjellanderfb114242016-06-13 00:19:48 -0700124 } else {
125 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ]
126 }
127
kjellandere40a7ee2016-10-16 23:56:12 -0700128 if (!build_with_chromium && is_clang) {
129 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -0700130 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellanderfb114242016-06-13 00:19:48 -0700131 }
132
133 if (is_win) {
134 cflags = [
135 # TODO(kjellander): Bug 261: fix this warning.
136 "/wd4373", # virtual function override.
137 ]
138 }
139
140 deps = [
mbonadei49f465f2016-12-28 04:43:46 -0800141 ":remote_bitrate_estimator",
mbonadei1140f972017-04-26 03:38:35 -0700142 "..:module_api",
mbonadei49f465f2016-12-28 04:43:46 -0800143 "../..:webrtc_common",
Patrik Höglund3e113432017-12-15 14:40:10 +0100144 "../../:typedefs",
kwiberg84f6a3f2017-09-05 08:43:13 -0700145 "../../api:optional",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100146 "../../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700147 "../../rtc_base:gtest_prod",
148 "../../rtc_base:rtc_base",
149 "../../rtc_base:rtc_base_approved",
Bjorn Tereliusa194e582017-10-25 13:07:09 +0200150 "../../rtc_base:rtc_numerics",
mbonadei49f465f2016-12-28 04:43:46 -0800151 "../../system_wrappers",
Mirko Bonadeia498ae82017-12-06 09:17:14 +0100152 "../../system_wrappers:field_trial_api",
kjellanderfb114242016-06-13 00:19:48 -0700153 "../../test:test_support",
mbonadei49f465f2016-12-28 04:43:46 -0800154 "../../voice_engine",
155 "../bitrate_controller",
terelius95310922016-11-03 08:14:07 -0700156 "../congestion_controller",
kjellanderfb114242016-06-13 00:19:48 -0700157 "../pacing",
mbonadei49f465f2016-12-28 04:43:46 -0800158 "../rtp_rtcp",
Mirko Bonadeib5728d92017-12-06 07:51:33 +0100159 "../rtp_rtcp:rtp_rtcp_format",
charujaincb728ea2017-09-18 03:08:08 -0700160 "../video_coding:video_coding_utility",
kjellanderfb114242016-06-13 00:19:48 -0700161 "//testing/gmock",
162 "//testing/gtest",
163 ]
164 }
ehmaldonado021eef32017-01-05 07:09:50 -0800165
166 rtc_source_set("remote_bitrate_estimator_perf_tests") {
167 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700168
ehmaldonado021eef32017-01-05 07:09:50 -0800169 sources = [
170 "remote_bitrate_estimators_test.cc",
171 ]
172 deps = [
173 ":bwe_simulator_lib",
174 ":remote_bitrate_estimator",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700175 "../../rtc_base:rtc_base_approved",
Stefan Holmerea00e482017-10-06 08:43:34 +0200176 "../../test:field_trial",
ehmaldonado90474cc2017-03-17 03:47:24 -0700177 "../../test:test_support",
ehmaldonado021eef32017-01-05 07:09:50 -0800178 ]
179 if (!build_with_chromium && is_clang) {
180 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
181 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
182 }
183 }
ehmaldonado36268652017-01-19 08:27:11 -0800184
185 rtc_source_set("remote_bitrate_estimator_unittests") {
186 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700187
ehmaldonado36268652017-01-19 08:27:11 -0800188 sources = [
189 "aimd_rate_control_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800190 "inter_arrival_unittest.cc",
191 "overuse_detector_unittest.cc",
192 "remote_bitrate_estimator_abs_send_time_unittest.cc",
193 "remote_bitrate_estimator_single_stream_unittest.cc",
194 "remote_bitrate_estimator_unittest_helper.cc",
195 "remote_bitrate_estimator_unittest_helper.h",
196 "remote_estimator_proxy_unittest.cc",
197 "send_time_history_unittest.cc",
198 "test/bwe_test_framework_unittest.cc",
199 "test/bwe_unittest.cc",
gnish157cbbd2017-07-18 02:50:22 -0700200 "test/estimators/congestion_window_unittest.cc",
201 "test/estimators/max_bandwidth_filter_unittest.cc",
202 "test/estimators/min_rtt_filter_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800203 "test/estimators/nada_unittest.cc",
204 "test/metric_recorder_unittest.cc",
205 ]
206 deps = [
207 ":bwe_simulator_lib",
208 ":remote_bitrate_estimator",
209 "../..:webrtc_common",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100210 "../../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700211 "../../rtc_base:rtc_base",
212 "../../rtc_base:rtc_base_approved",
Mirko Bonadeia498ae82017-12-06 09:17:14 +0100213 "../../system_wrappers",
ehmaldonado36268652017-01-19 08:27:11 -0800214 "../../test:field_trial",
215 "../../test:test_support",
216 "../pacing:pacing",
Mirko Bonadeib5728d92017-12-06 07:51:33 +0100217 "../rtp_rtcp:rtp_rtcp_format",
ehmaldonado36268652017-01-19 08:27:11 -0800218 "//testing/gmock",
219 ]
220 if (is_win) {
221 cflags = [
222 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
223 "/wd4373", # virtual function override.
224 ]
225 }
226 if (!build_with_chromium && is_clang) {
227 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
228 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
229 }
230 }
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800231
232 rtc_test("bwe_simulations_tests") {
233 testonly = true
234
235 sources = [
236 "bwe_simulations.cc",
237 ]
238 deps = [
239 ":bwe_simulator_lib",
240 ":remote_bitrate_estimator",
241 "../..:webrtc_common",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700242 "../../rtc_base:rtc_base_approved",
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800243 "../../test:test_main",
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800244 "//testing/gmock",
245 "//testing/gtest",
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800246 ]
Edward Lemur09d90142017-10-11 20:47:48 +0200247 data = [
248 "//resources/sprint-uplink.rx",
249 "//resources/verizon4g-downlink.rx",
250 "//resources/google-wifi-3mbps.rx",
251 ]
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800252
253 if (!build_with_chromium && is_clang) {
254 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
255 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
256 }
257
258 if (is_win) {
259 cflags = [
260 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
261 "/wd4373", # virtual function override.
262 ]
263 }
264 }
kjellanderfb114242016-06-13 00:19:48 -0700265}