blob: 307cbe170a02f39c83ff97df3a592d6ca0b12942 [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 = [
Danil Chapovalov83bbe912019-08-07 12:24:53 +020018 "../../../api/rtc_event_log",
Danil Chapovalov32b18342019-07-11 13:58:14 +020019 "../../../api/task_queue:default_task_queue_factory",
Benjamin Wright47dbcab2019-03-14 15:01:30 -070020 "../../../api/test/video:function_video_factory",
21 "../../../api/video_codecs:video_codecs_api",
Danil Chapovalovce928172019-04-24 18:17:42 +020022 "../../../call",
Benjamin Wright47dbcab2019-03-14 15:01:30 -070023 "../../../call:call_interfaces",
24 "../../../common_video",
Benjamin Wright47dbcab2019-03-14 15:01:30 -070025 "../../../media:rtc_internal_video_codecs",
26 "../../../modules/rtp_rtcp",
27 "../../../rtc_base:checks",
28 "../../../rtc_base:rtc_base_approved",
29 "../../../rtc_base:rtc_json",
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}