blob: 4784a835f4759726802d3904b5fb55965f1fe6af [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",
Danil Chapovalov599df852017-09-25 15:19:35 +020049 "../../api:optional",
50 "../../modules:module_api",
51 "../../modules/rtp_rtcp:rtp_rtcp_format",
ehmaldonadof6a861a2017-07-19 10:40:47 -070052 "../../rtc_base:rtc_base_approved",
kjellander5c1d0432016-06-09 02:40:58 -070053 "../../system_wrappers",
54 ]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000055}
kjellanderfb114242016-06-13 00:19:48 -070056
mbonadei2877eaf2017-09-05 03:01:45 -070057if (!build_with_chromium) {
58 rtc_source_set("bwe_rtp") {
59 testonly = true
60 sources = [
61 "tools/bwe_rtp.cc",
62 "tools/bwe_rtp.h",
63 ]
64 deps = [
65 ":remote_bitrate_estimator",
66 "../../rtc_base:rtc_base_approved",
67 "../../test:rtp_test_utils",
68 "../rtp_rtcp:rtp_rtcp",
69 ]
70 if (is_clang) {
71 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
72 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
73 }
74 }
75}
76
kjellanderfb114242016-06-13 00:19:48 -070077if (rtc_include_tests) {
terelius3dcfd642016-10-07 00:39:56 -070078 rtc_static_library("bwe_simulator_lib") {
kjellanderfb114242016-06-13 00:19:48 -070079 testonly = true
80 sources = [
gnisha36165c2017-08-20 09:19:58 -070081 "test/bbr_paced_sender.cc",
82 "test/bbr_paced_sender.h",
kjellanderfb114242016-06-13 00:19:48 -070083 "test/bwe.cc",
84 "test/bwe.h",
85 "test/bwe_test.cc",
86 "test/bwe_test.h",
87 "test/bwe_test_baselinefile.cc",
88 "test/bwe_test_baselinefile.h",
89 "test/bwe_test_fileutils.cc",
90 "test/bwe_test_fileutils.h",
91 "test/bwe_test_framework.cc",
92 "test/bwe_test_framework.h",
93 "test/bwe_test_logging.h",
gnish6dcdf102017-06-05 06:01:26 -070094 "test/estimators/bbr.cc",
95 "test/estimators/bbr.h",
gnish157cbbd2017-07-18 02:50:22 -070096 "test/estimators/congestion_window.cc",
gnish6dcdf102017-06-05 06:01:26 -070097 "test/estimators/congestion_window.h",
gnish191113a2017-07-05 05:00:46 -070098 "test/estimators/max_bandwidth_filter.cc",
gnish6dcdf102017-06-05 06:01:26 -070099 "test/estimators/max_bandwidth_filter.h",
100 "test/estimators/min_rtt_filter.h",
kjellanderfb114242016-06-13 00:19:48 -0700101 "test/estimators/nada.cc",
102 "test/estimators/nada.h",
103 "test/estimators/remb.cc",
104 "test/estimators/remb.h",
105 "test/estimators/send_side.cc",
106 "test/estimators/send_side.h",
107 "test/estimators/tcp.cc",
108 "test/estimators/tcp.h",
109 "test/metric_recorder.cc",
110 "test/metric_recorder.h",
111 "test/packet.h",
112 "test/packet_receiver.cc",
113 "test/packet_receiver.h",
114 "test/packet_sender.cc",
115 "test/packet_sender.h",
116 ]
117
118 if (rtc_enable_bwe_test_logging) {
119 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ]
kjellanderfb114242016-06-13 00:19:48 -0700120 } else {
121 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ]
122 }
123
kjellandere40a7ee2016-10-16 23:56:12 -0700124 if (!build_with_chromium && is_clang) {
125 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -0700126 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellanderfb114242016-06-13 00:19:48 -0700127 }
128
129 if (is_win) {
130 cflags = [
131 # TODO(kjellander): Bug 261: fix this warning.
132 "/wd4373", # virtual function override.
133 ]
134 }
135
136 deps = [
mbonadei49f465f2016-12-28 04:43:46 -0800137 ":remote_bitrate_estimator",
mbonadei1140f972017-04-26 03:38:35 -0700138 "..:module_api",
mbonadei49f465f2016-12-28 04:43:46 -0800139 "../..:webrtc_common",
kwiberg84f6a3f2017-09-05 08:43:13 -0700140 "../../api:optional",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700141 "../../rtc_base:gtest_prod",
142 "../../rtc_base:rtc_base",
143 "../../rtc_base:rtc_base_approved",
mbonadei49f465f2016-12-28 04:43:46 -0800144 "../../system_wrappers",
kjellanderfb114242016-06-13 00:19:48 -0700145 "../../test:test_support",
mbonadei49f465f2016-12-28 04:43:46 -0800146 "../../voice_engine",
147 "../bitrate_controller",
terelius95310922016-11-03 08:14:07 -0700148 "../congestion_controller",
kjellanderfb114242016-06-13 00:19:48 -0700149 "../pacing",
mbonadei49f465f2016-12-28 04:43:46 -0800150 "../rtp_rtcp",
charujaincb728ea2017-09-18 03:08:08 -0700151 "../video_coding:video_coding_utility",
kjellanderfb114242016-06-13 00:19:48 -0700152 "//testing/gmock",
153 "//testing/gtest",
154 ]
155 }
ehmaldonado021eef32017-01-05 07:09:50 -0800156
157 rtc_source_set("remote_bitrate_estimator_perf_tests") {
158 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700159
160 # Skip restricting visibility on mobile platforms since the tests on those
161 # gets additional generated targets which would require many lines here to
162 # cover (which would be confusing to read and hard to maintain).
163 if (!is_android && !is_ios) {
jianjun.zhuc0247402017-07-11 06:20:45 -0700164 visibility = [ "../..:webrtc_perf_tests" ]
kjellandere0629c02017-04-25 04:04:50 -0700165 }
ehmaldonado021eef32017-01-05 07:09:50 -0800166 sources = [
167 "remote_bitrate_estimators_test.cc",
168 ]
169 deps = [
170 ":bwe_simulator_lib",
171 ":remote_bitrate_estimator",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700172 "../../rtc_base:rtc_base_approved",
ehmaldonado90474cc2017-03-17 03:47:24 -0700173 "../../test:test_support",
ehmaldonado021eef32017-01-05 07:09:50 -0800174 ]
175 if (!build_with_chromium && is_clang) {
176 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
177 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
178 }
179 }
ehmaldonado36268652017-01-19 08:27:11 -0800180
181 rtc_source_set("remote_bitrate_estimator_unittests") {
182 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700183
184 # Skip restricting visibility on mobile platforms since the tests on those
185 # gets additional generated targets which would require many lines here to
186 # cover (which would be confusing to read and hard to maintain).
187 if (!is_android && !is_ios) {
jianjun.zhuc0247402017-07-11 06:20:45 -0700188 visibility = [ "..:modules_unittests" ]
kjellandere0629c02017-04-25 04:04:50 -0700189 }
ehmaldonado36268652017-01-19 08:27:11 -0800190 sources = [
191 "aimd_rate_control_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800192 "inter_arrival_unittest.cc",
193 "overuse_detector_unittest.cc",
194 "remote_bitrate_estimator_abs_send_time_unittest.cc",
195 "remote_bitrate_estimator_single_stream_unittest.cc",
196 "remote_bitrate_estimator_unittest_helper.cc",
197 "remote_bitrate_estimator_unittest_helper.h",
198 "remote_estimator_proxy_unittest.cc",
199 "send_time_history_unittest.cc",
200 "test/bwe_test_framework_unittest.cc",
201 "test/bwe_unittest.cc",
gnish157cbbd2017-07-18 02:50:22 -0700202 "test/estimators/congestion_window_unittest.cc",
203 "test/estimators/max_bandwidth_filter_unittest.cc",
204 "test/estimators/min_rtt_filter_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800205 "test/estimators/nada_unittest.cc",
206 "test/metric_recorder_unittest.cc",
207 ]
208 deps = [
209 ":bwe_simulator_lib",
210 ":remote_bitrate_estimator",
211 "../..:webrtc_common",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700212 "../../rtc_base:rtc_base",
213 "../../rtc_base:rtc_base_approved",
ehmaldonado36268652017-01-19 08:27:11 -0800214 "../../system_wrappers:system_wrappers",
215 "../../test:field_trial",
216 "../../test:test_support",
217 "../pacing:pacing",
218 "../rtp_rtcp:rtp_rtcp",
219 "//testing/gmock",
220 ]
221 if (is_win) {
222 cflags = [
223 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
224 "/wd4373", # virtual function override.
225 ]
226 }
227 if (!build_with_chromium && is_clang) {
228 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
229 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
230 }
231 }
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800232
233 rtc_test("bwe_simulations_tests") {
234 testonly = true
235
236 sources = [
237 "bwe_simulations.cc",
238 ]
239 deps = [
240 ":bwe_simulator_lib",
241 ":remote_bitrate_estimator",
242 "../..:webrtc_common",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700243 "../../rtc_base:rtc_base_approved",
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800244 "../../test:test_main",
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800245 "//testing/gmock",
246 "//testing/gtest",
ehmaldonado9cbb0a12017-01-30 03:07:03 -0800247 ]
248
249 if (!build_with_chromium && is_clang) {
250 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
251 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
252 }
253
254 if (is_win) {
255 cflags = [
256 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
257 "/wd4373", # virtual function override.
258 ]
259 }
260 }
kjellanderfb114242016-06-13 00:19:48 -0700261}