blob: de0347d190135df051d83b1e013e7a01b002b937 [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",
20 "../../../call:call_interfaces",
21 "../../../common_video",
22 "../../../logging:rtc_event_log_api",
23 "../../../media:rtc_internal_video_codecs",
24 "../../../modules/rtp_rtcp",
25 "../../../rtc_base:checks",
26 "../../../rtc_base:rtc_base_approved",
27 "../../../rtc_base:rtc_json",
28 "../../../system_wrappers",
29 "../../../test:call_config_utils",
30 "../../../test:fake_video_codecs",
31 "../../../test:rtp_test_utils",
32 "../../../test:run_test",
33 "../../../test:run_test_interface",
34 "../../../test:test_common",
35 "../../../test:test_renderer",
36 "../../../test:test_support",
37 "../../../test:video_test_common",
38 "//third_party/abseil-cpp/absl/memory",
39 ]
40}