blob: 61d628ad74065a1d0c6f062df3536198f770ba53 [file] [log] [blame]
kjellander@webrtc.org1227ab82014-06-23 19:21:071# 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 14:58:229import("../webrtc.gni")
kjellander@webrtc.org1227ab82014-06-23 19:21:0710
kjellanderb62dbbe2016-09-23 07:38:5211rtc_static_library("video") {
kjellander@webrtc.org788f0582014-08-28 13:51:0812 sources = [
Peter Boström7623ce42015-12-09 11:13:3013 "call_stats.cc",
14 "call_stats.h",
mflodman15d83572016-10-06 15:35:1115 "encoder_rtcp_feedback.cc",
16 "encoder_rtcp_feedback.h",
Peter Boström7623ce42015-12-09 11:13:3017 "overuse_frame_detector.cc",
18 "overuse_frame_detector.h",
19 "payload_router.cc",
20 "payload_router.h",
palmkvist349092b2016-12-13 10:45:5721 "quality_threshold.cc",
22 "quality_threshold.h",
kjellander@webrtc.org788f0582014-08-28 13:51:0823 "receive_statistics_proxy.cc",
24 "receive_statistics_proxy.h",
Peter Boström7623ce42015-12-09 11:13:3025 "report_block_stats.cc",
26 "report_block_stats.h",
mflodmanfa666592016-04-29 06:15:3327 "rtp_stream_receiver.cc",
28 "rtp_stream_receiver.h",
mflodman4cd27902016-08-05 13:28:4529 "rtp_streams_synchronizer.cc",
30 "rtp_streams_synchronizer.h",
asapersson35151f32016-05-03 06:44:0131 "send_delay_stats.cc",
32 "send_delay_stats.h",
kjellander@webrtc.org788f0582014-08-28 13:51:0833 "send_statistics_proxy.cc",
34 "send_statistics_proxy.h",
asapersson0e9d6d92016-05-23 13:07:5535 "stats_counter.cc",
36 "stats_counter.h",
Peter Boström7623ce42015-12-09 11:13:3037 "stream_synchronization.cc",
38 "stream_synchronization.h",
charujainbf6a45b2016-11-03 11:21:4239 "transport_adapter.cc",
40 "transport_adapter.h",
kjellander@webrtc.org788f0582014-08-28 13:51:0841 "video_receive_stream.cc",
42 "video_receive_stream.h",
43 "video_send_stream.cc",
44 "video_send_stream.h",
mflodmancfc8e3b2016-05-04 04:22:0445 "video_stream_decoder.cc",
46 "video_stream_decoder.h",
Peter Boström7623ce42015-12-09 11:13:3047 "vie_encoder.cc",
48 "vie_encoder.h",
kjellander@webrtc.org788f0582014-08-28 13:51:0849 ]
50
kjellandere40a7ee2016-10-17 06:56:1251 if (!build_with_chromium && is_clang) {
52 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 11:10:3453 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander@webrtc.org788f0582014-08-28 13:51:0854 }
55
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:2256 deps = [
mbonadei81c79f52017-04-26 06:42:1557 "..:video_stream_api",
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:2258 "..:webrtc_common",
aleloia8eb7562016-11-28 15:02:1359 "../api:transport_api",
ilnikd60d06a2017-04-05 10:02:2060 "../api/video_codecs:video_codecs_api",
kjellander@webrtc.org7ffeab52016-02-26 21:46:0961 "../base:rtc_base_approved",
tereliusbc5d9212017-01-13 17:14:3362 "../base:rtc_numerics",
perkj26091b12016-09-01 08:17:4063 "../base:rtc_task_queue",
mbonadei9087d492017-04-25 07:35:3564 "../call:call_interfaces",
Peter Boström2ee24392015-06-22 05:57:1665 "../common_video",
skvladcc91d282016-10-04 01:31:2266 "../logging:rtc_event_log_api",
philipel022b54e2016-12-20 12:15:5967 "../media:rtc_media_base",
mbonadei1140f972017-04-26 10:38:3568 "../modules:module_api",
Peter Boström2ee24392015-06-22 05:57:1669 "../modules/bitrate_controller",
kjellander@webrtc.org7ffeab52016-02-26 21:46:0970 "../modules/congestion_controller",
sprangebbf8a82015-09-21 22:11:1471 "../modules/pacing",
kjellander@webrtc.org7ffeab52016-02-26 21:46:0972 "../modules/remote_bitrate_estimator",
Peter Boström2ee24392015-06-22 05:57:1673 "../modules/rtp_rtcp",
74 "../modules/utility",
Peter Boström2ee24392015-06-22 05:57:1675 "../modules/video_coding",
mbonadei9087d492017-04-25 07:35:3576 "../modules/video_coding:video_coding_utility",
77 "../modules/video_coding:webrtc_vp8",
Peter Boström2ee24392015-06-22 05:57:1678 "../modules/video_processing",
kjellander8237abf2015-12-08 15:12:0679 "../system_wrappers",
Peter Boström7623ce42015-12-09 11:13:3080 "../voice_engine",
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:2281 ]
kjellander@webrtc.org1227ab82014-06-23 19:21:0782}
Peter Boström02083222016-06-14 10:52:5483
84if (rtc_include_tests) {
kjellandera3cac052016-10-24 08:52:3985 rtc_source_set("video_quality_test") {
86 testonly = true
kjellandere0629c02017-04-25 11:04:5087 visibility = [ ":*" ] # Only targets in this file can depend on this.
kjellandera3cac052016-10-24 08:52:3988 sources = [
89 "video_quality_test.cc",
90 "video_quality_test.h",
91 ]
92 deps = [
ilnikdf92c5c2017-02-23 10:08:4493 "../base:rtc_base_tests_utils",
brandtr696c9c62016-12-19 13:47:2894 "../base:rtc_task_queue",
mbonadei9087d492017-04-25 07:35:3595 "../call:call_interfaces",
96 "../common_video",
97 "../logging:rtc_event_log_api",
magjedceecea42016-11-28 15:20:2198 "../media:rtc_media_base",
mbonadei9087d492017-04-25 07:35:3599 "../modules/audio_mixer:audio_mixer_impl",
100 "../modules/rtp_rtcp",
101 "../modules/video_coding:webrtc_h264",
102 "../modules/video_coding:webrtc_vp8",
103 "../modules/video_coding:webrtc_vp9",
kjellandera3cac052016-10-24 08:52:39104 "../system_wrappers",
mbonadei9087d492017-04-25 07:35:35105 "../test:test_common",
106 "../test:test_support",
107 "../voice_engine",
kjellandera3cac052016-10-24 08:52:39108 "//testing/gtest",
ehmaldonado021eef32017-01-05 15:09:50109 "//webrtc/test:test_renderer",
perkjc5726c12017-03-01 11:37:08110 "//webrtc/test:video_test_common",
kjellandera3cac052016-10-24 08:52:39111 ]
kjellandera3cac052016-10-24 08:52:39112 if (!build_with_chromium && is_clang) {
113 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
114 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
115 }
116 }
117
ehmaldonado021eef32017-01-05 15:09:50118 rtc_source_set("video_full_stack_tests") {
119 testonly = true
kjellandere0629c02017-04-25 11:04:50120
121 # Skip restricting visibility on mobile platforms since the tests on those
122 # gets additional generated targets which would require many lines here to
123 # cover (which would be confusing to read and hard to maintain).
124 if (!is_android && !is_ios) {
125 visibility = [ "//webrtc:webrtc_perf_tests" ]
126 }
ehmaldonado021eef32017-01-05 15:09:50127 sources = [
128 "full_stack_tests.cc",
129 ]
130 deps = [
131 ":video_quality_test",
mbonadei9087d492017-04-25 07:35:35132 "../test:field_trial",
133 "../test:test_support",
ehmaldonado021eef32017-01-05 15:09:50134 "//testing/gtest",
135 "//webrtc/test:test_common",
136 ]
137 if (!build_with_chromium && is_clang) {
138 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
139 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
140 }
141 if (rtc_use_h264) {
142 defines = [ "WEBRTC_USE_H264" ]
143 }
144 }
145
kjellandera3cac052016-10-24 08:52:39146 rtc_executable("video_loopback") {
147 testonly = true
148 sources = [
149 "video_loopback.cc",
150 ]
151 deps = [
152 ":video_quality_test",
153 "../system_wrappers:metrics_default",
154 "../test:field_trial",
155 "../test:run_test",
156 "../test:test_common",
157 "../test:test_renderer",
mbonadei9087d492017-04-25 07:35:35158 "../test:test_support",
kjellandera3cac052016-10-24 08:52:39159 "//testing/gmock",
160 "//testing/gtest",
161 "//third_party/gflags",
162 ]
163 if (!build_with_chromium && is_clang) {
164 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
165 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
166 }
167 }
168
169 rtc_executable("screenshare_loopback") {
170 testonly = true
171 sources = [
172 "screenshare_loopback.cc",
173 ]
174
175 deps = [
176 ":video_quality_test",
mbonadei9087d492017-04-25 07:35:35177 "../base:rtc_base_approved",
kjellandera3cac052016-10-24 08:52:39178 "../system_wrappers:metrics_default",
179 "../test:field_trial",
180 "../test:run_test",
181 "../test:test_common",
182 "../test:test_renderer",
mbonadei9087d492017-04-25 07:35:35183 "../test:test_support",
kjellandera3cac052016-10-24 08:52:39184 "//third_party/gflags",
185 ]
186 if (!build_with_chromium && is_clang) {
187 # Suppress warnings from Chrome's Clang plugins.
188 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
189 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
190 }
191 }
192
stefan64427e52016-12-20 15:26:58193 rtc_executable("video_replay") {
194 testonly = true
195 sources = [
196 "replay.cc",
197 ]
198 deps = [
mbonadei9087d492017-04-25 07:35:35199 "..:webrtc_common",
ilnikd60d06a2017-04-05 10:02:20200 "../api/video_codecs:video_codecs_api",
mbonadei9087d492017-04-25 07:35:35201 "../base:rtc_base_approved",
202 "../call:call_interfaces",
203 "../common_video",
204 "../logging:rtc_event_log_api",
205 "../modules/rtp_rtcp",
206 "../system_wrappers",
stefan64427e52016-12-20 15:26:58207 "../system_wrappers:metrics_default",
208 "../test:field_trial",
mbonadei9087d492017-04-25 07:35:35209 "../test:rtp_test_utils",
stefan64427e52016-12-20 15:26:58210 "../test:run_test",
211 "../test:test_common",
212 "../test:test_renderer",
mbonadei9087d492017-04-25 07:35:35213 "../test:test_support",
214 "../test:video_test_common",
stefan64427e52016-12-20 15:26:58215 "//third_party/gflags",
216 ]
stefan64427e52016-12-20 15:26:58217 if (!build_with_chromium && is_clang) {
218 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
219 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
220 }
221 }
222
Peter Boström02083222016-06-14 10:52:54223 # TODO(pbos): Rename test suite.
ehmaldonado38a21322016-09-02 11:10:34224 rtc_source_set("video_tests") {
Peter Boström02083222016-06-14 10:52:54225 testonly = true
kjellandere0629c02017-04-25 11:04:50226
227 # Skip restricting visibility on mobile platforms since the tests on those
228 # gets additional generated targets which would require many lines here to
229 # cover (which would be confusing to read and hard to maintain).
230 if (!is_android && !is_ios) {
231 visibility = [ "//webrtc:video_engine_tests" ]
232 }
hta9aa96882016-12-06 13:36:03233 defines = []
Peter Boström02083222016-06-14 10:52:54234 sources = [
235 "call_stats_unittest.cc",
mflodman15d83572016-10-06 15:35:11236 "encoder_rtcp_feedback_unittest.cc",
Peter Boström02083222016-06-14 10:52:54237 "end_to_end_tests.cc",
238 "overuse_frame_detector_unittest.cc",
239 "payload_router_unittest.cc",
palmkvist349092b2016-12-13 10:45:57240 "quality_threshold_unittest.cc",
sakale5ba44e2016-10-26 14:09:24241 "receive_statistics_proxy_unittest.cc",
Peter Boström02083222016-06-14 10:52:54242 "report_block_stats_unittest.cc",
johan62d02c32017-01-24 12:38:27243 "rtp_stream_receiver_unittest.cc",
Peter Boström02083222016-06-14 10:52:54244 "send_delay_stats_unittest.cc",
245 "send_statistics_proxy_unittest.cc",
246 "stats_counter_unittest.cc",
247 "stream_synchronization_unittest.cc",
johanf2183ff2017-02-28 09:33:09248 "video_receive_stream_unittest.cc",
Peter Boström02083222016-06-14 10:52:54249 "video_send_stream_tests.cc",
perkj26091b12016-09-01 08:17:40250 "vie_encoder_unittest.cc",
Peter Boström02083222016-06-14 10:52:54251 ]
252 deps = [
253 ":video",
mbonadei81c79f52017-04-26 06:42:15254 "..:video_stream_api",
mbonadei9087d492017-04-25 07:35:35255 "../api:video_frame_api",
256 "../api/video_codecs:video_codecs_api",
257 "../base:rtc_base_approved",
258 "../base:rtc_base_tests_utils",
259 "../call:call_interfaces",
260 "../common_video",
261 "../logging:rtc_event_log_api",
magjedceecea42016-11-28 15:20:21262 "../media:rtc_media_base",
mbonadei9087d492017-04-25 07:35:35263 "../media:rtc_media_tests_utils",
mbonadei1140f972017-04-26 10:38:35264 "../modules:module_api",
mbonadei9087d492017-04-25 07:35:35265 "../modules/pacing",
266 "../modules/rtp_rtcp",
kjellandere0629c02017-04-25 11:04:50267 "../modules/rtp_rtcp:mock_rtp_rtcp",
mbonadei9087d492017-04-25 07:35:35268 "../modules/utility",
269 "../modules/video_coding",
270 "../modules/video_coding:video_coding_utility",
271 "../modules/video_coding:webrtc_h264",
272 "../modules/video_coding:webrtc_vp8",
273 "../modules/video_coding:webrtc_vp9",
274 "../system_wrappers",
275 "../system_wrappers:field_trial_default",
276 "../system_wrappers:metrics_api",
277 "../system_wrappers:metrics_default",
278 "../test:direct_transport",
279 "../test:field_trial",
280 "../test:rtp_test_utils",
281 "../test:test_common",
282 "../test:test_support",
283 "../test:video_test_common",
Peter Boström02083222016-06-14 10:52:54284 "//testing/gmock",
285 "//testing/gtest",
286 ]
kjellandere40a7ee2016-10-17 06:56:12287 if (!build_with_chromium && is_clang) {
288 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 11:10:34289 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
Peter Boström02083222016-06-14 10:52:54290 }
brandtr445fb8f2016-11-14 12:11:23291 if (rtc_use_h264) {
hta9aa96882016-12-06 13:36:03292 defines += [ "WEBRTC_USE_H264" ]
brandtr445fb8f2016-11-14 12:11:23293 }
Peter Boström02083222016-06-14 10:52:54294 }
295}