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 9import("../../../webrtc.gni") 10 11rtc_library("rtp_replayer") { 12 testonly = true 13 sources = [ 14 "rtp_replayer.cc", 15 "rtp_replayer.h", 16 ] 17 deps = [ 18 "../../../api/rtc_event_log", 19 "../../../api/task_queue:default_task_queue_factory", 20 "../../../api/test/video:function_video_factory", 21 "../../../api/transport:field_trial_based_config", 22 "../../../api/video_codecs:video_codecs_api", 23 "../../../call", 24 "../../../call:call_interfaces", 25 "../../../common_video", 26 "../../../media:rtc_internal_video_codecs", 27 "../../../rtc_base:checks", 28 "../../../rtc_base:rtc_base_approved", 29 "../../../rtc_base:rtc_base_tests_utils", 30 "../../../rtc_base:rtc_json", 31 "../../../system_wrappers", 32 "../../../test:call_config_utils", 33 "../../../test:encoder_settings", 34 "../../../test:fake_video_codecs", 35 "../../../test:null_transport", 36 "../../../test:rtp_test_utils", 37 "../../../test:run_test", 38 "../../../test:run_test_interface", 39 "../../../test:test_common", 40 "../../../test:test_renderer", 41 "../../../test:test_support", 42 "../../../test:video_test_common", 43 ] 44} 45