xref: /aosp_15_r20/external/webrtc/test/fuzzers/utils/BUILD.gn (revision d9f758449e529ab9291ac668be2861e7a55c2422)
1*d9f75844SAndroid Build Coastguard Worker# Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
2*d9f75844SAndroid Build Coastguard Worker#
3*d9f75844SAndroid Build Coastguard Worker# Use of this source code is governed by a BSD-style license
4*d9f75844SAndroid Build Coastguard Worker# that can be found in the LICENSE file in the root of the source
5*d9f75844SAndroid Build Coastguard Worker# tree. An additional intellectual property rights grant can be found
6*d9f75844SAndroid Build Coastguard Worker# in the file PATENTS.  All contributing project authors may
7*d9f75844SAndroid Build Coastguard Worker# be found in the AUTHORS file in the root of the source tree.
8*d9f75844SAndroid Build Coastguard Worker
9*d9f75844SAndroid Build Coastguard Workerimport("../../../webrtc.gni")
10*d9f75844SAndroid Build Coastguard Worker
11*d9f75844SAndroid Build Coastguard Workerrtc_library("rtp_replayer") {
12*d9f75844SAndroid Build Coastguard Worker  testonly = true
13*d9f75844SAndroid Build Coastguard Worker  sources = [
14*d9f75844SAndroid Build Coastguard Worker    "rtp_replayer.cc",
15*d9f75844SAndroid Build Coastguard Worker    "rtp_replayer.h",
16*d9f75844SAndroid Build Coastguard Worker  ]
17*d9f75844SAndroid Build Coastguard Worker  deps = [
18*d9f75844SAndroid Build Coastguard Worker    "../../../api/rtc_event_log",
19*d9f75844SAndroid Build Coastguard Worker    "../../../api/task_queue:default_task_queue_factory",
20*d9f75844SAndroid Build Coastguard Worker    "../../../api/test/video:function_video_factory",
21*d9f75844SAndroid Build Coastguard Worker    "../../../api/transport:field_trial_based_config",
22*d9f75844SAndroid Build Coastguard Worker    "../../../api/video_codecs:video_codecs_api",
23*d9f75844SAndroid Build Coastguard Worker    "../../../call",
24*d9f75844SAndroid Build Coastguard Worker    "../../../call:call_interfaces",
25*d9f75844SAndroid Build Coastguard Worker    "../../../common_video",
26*d9f75844SAndroid Build Coastguard Worker    "../../../media:rtc_internal_video_codecs",
27*d9f75844SAndroid Build Coastguard Worker    "../../../modules/rtp_rtcp:rtp_rtcp_format",
28*d9f75844SAndroid Build Coastguard Worker    "../../../rtc_base:checks",
29*d9f75844SAndroid Build Coastguard Worker    "../../../rtc_base:rtc_base_tests_utils",
30*d9f75844SAndroid Build Coastguard Worker    "../../../rtc_base:rtc_json",
31*d9f75844SAndroid Build Coastguard Worker    "../../../rtc_base:timeutils",
32*d9f75844SAndroid Build Coastguard Worker    "../../../system_wrappers",
33*d9f75844SAndroid Build Coastguard Worker    "../../../test:call_config_utils",
34*d9f75844SAndroid Build Coastguard Worker    "../../../test:encoder_settings",
35*d9f75844SAndroid Build Coastguard Worker    "../../../test:fake_video_codecs",
36*d9f75844SAndroid Build Coastguard Worker    "../../../test:null_transport",
37*d9f75844SAndroid Build Coastguard Worker    "../../../test:rtp_test_utils",
38*d9f75844SAndroid Build Coastguard Worker    "../../../test:run_loop",
39*d9f75844SAndroid Build Coastguard Worker    "../../../test:run_test",
40*d9f75844SAndroid Build Coastguard Worker    "../../../test:run_test_interface",
41*d9f75844SAndroid Build Coastguard Worker    "../../../test:test_renderer",
42*d9f75844SAndroid Build Coastguard Worker    "../../../test:test_support",
43*d9f75844SAndroid Build Coastguard Worker    "../../../test:video_test_common",
44*d9f75844SAndroid Build Coastguard Worker  ]
45*d9f75844SAndroid Build Coastguard Worker  absl_deps = [ "//third_party/abseil-cpp/absl/memory:memory" ]
46*d9f75844SAndroid Build Coastguard Worker}
47