Benjamin Wright | 47dbcab | 2019-03-14 15:01:30 -0700 | [diff] [blame] | 1 | # 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 | |
| 9 | import("../../../webrtc.gni") |
| 10 | |
| 11 | rtc_source_set("rtp_replayer") { |
| 12 | testonly = true |
| 13 | sources = [ |
| 14 | "rtp_replayer.cc", |
| 15 | "rtp_replayer.h", |
| 16 | ] |
| 17 | deps = [ |
Danil Chapovalov | 83bbe91 | 2019-08-07 12:24:53 +0200 | [diff] [blame^] | 18 | "../../../api/rtc_event_log", |
Danil Chapovalov | 32b1834 | 2019-07-11 13:58:14 +0200 | [diff] [blame] | 19 | "../../../api/task_queue:default_task_queue_factory", |
Benjamin Wright | 47dbcab | 2019-03-14 15:01:30 -0700 | [diff] [blame] | 20 | "../../../api/test/video:function_video_factory", |
| 21 | "../../../api/video_codecs:video_codecs_api", |
Danil Chapovalov | ce92817 | 2019-04-24 18:17:42 +0200 | [diff] [blame] | 22 | "../../../call", |
Benjamin Wright | 47dbcab | 2019-03-14 15:01:30 -0700 | [diff] [blame] | 23 | "../../../call:call_interfaces", |
| 24 | "../../../common_video", |
Benjamin Wright | 47dbcab | 2019-03-14 15:01:30 -0700 | [diff] [blame] | 25 | "../../../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 Wright | 47dbcab | 2019-03-14 15:01:30 -0700 | [diff] [blame] | 30 | "../../../system_wrappers", |
| 31 | "../../../test:call_config_utils", |
Danil Chapovalov | ce92817 | 2019-04-24 18:17:42 +0200 | [diff] [blame] | 32 | "../../../test:encoder_settings", |
Benjamin Wright | 47dbcab | 2019-03-14 15:01:30 -0700 | [diff] [blame] | 33 | "../../../test:fake_video_codecs", |
Danil Chapovalov | ce92817 | 2019-04-24 18:17:42 +0200 | [diff] [blame] | 34 | "../../../test:null_transport", |
Benjamin Wright | 47dbcab | 2019-03-14 15:01:30 -0700 | [diff] [blame] | 35 | "../../../test:rtp_test_utils", |
| 36 | "../../../test:run_test", |
| 37 | "../../../test:run_test_interface", |
Benjamin Wright | 47dbcab | 2019-03-14 15:01:30 -0700 | [diff] [blame] | 38 | "../../../test:test_renderer", |
| 39 | "../../../test:test_support", |
| 40 | "../../../test:video_test_common", |
| 41 | "//third_party/abseil-cpp/absl/memory", |
| 42 | ] |
| 43 | } |