blob: 009a3ff9cb5e96376b70ace5f1ec954f8cc5cd69 [file] [log] [blame]
Benjamin Wright47dbcab2019-03-14 15:01:30 -07001# Copyright (c) 2019 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
9import("../../../webrtc.gni")
10
11rtc_source_set("rtp_replayer") {
12 testonly = true
13 sources = [
14 "rtp_replayer.cc",
15 "rtp_replayer.h",
16 ]
17 deps = [
18 "../../../api/test/video:function_video_factory",
19 "../../../api/video_codecs:video_codecs_api",
Danil Chapovalovce928172019-04-24 18:17:42 +020020 "../../../call",
Benjamin Wright47dbcab2019-03-14 15:01:30 -070021 "../../../call:call_interfaces",
22 "../../../common_video",
23 "../../../logging:rtc_event_log_api",
24 "../../../media:rtc_internal_video_codecs",
25 "../../../modules/rtp_rtcp",
26 "../../../rtc_base:checks",
27 "../../../rtc_base:rtc_base_approved",
28 "../../../rtc_base:rtc_json",
Danil Chapovalov98793e52019-04-11 10:48:40 +020029 "../../../rtc_base:rtc_task_queue_stdlib",
Benjamin Wright47dbcab2019-03-14 15:01:30 -070030 "../../../system_wrappers",
31 "../../../test:call_config_utils",
Danil Chapovalovce928172019-04-24 18:17:42 +020032 "../../../test:encoder_settings",
Benjamin Wright47dbcab2019-03-14 15:01:30 -070033 "../../../test:fake_video_codecs",
Danil Chapovalovce928172019-04-24 18:17:42 +020034 "../../../test:null_transport",
Benjamin Wright47dbcab2019-03-14 15:01:30 -070035 "../../../test:rtp_test_utils",
36 "../../../test:run_test",
37 "../../../test:run_test_interface",
Benjamin Wright47dbcab2019-03-14 15:01:30 -070038 "../../../test:test_renderer",
39 "../../../test:test_support",
40 "../../../test:video_test_common",
41 "//third_party/abseil-cpp/absl/memory",
42 ]
43}