xref: /aosp_15_r20/external/webrtc/test/peer_scenario/tests/BUILD.gn (revision d9f758449e529ab9291ac668be2861e7a55c2422)
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
11if (rtc_include_tests) {
12  rtc_library("tests") {
13    testonly = true
14    sources = [
15      "peer_scenario_quality_test.cc",
16      "remote_estimate_test.cc",
17      "unsignaled_stream_test.cc",
18    ]
19    deps = [
20      "..:peer_scenario",
21      "../../:field_trial",
22      "../../:test_support",
23      "../../../media:rtc_media_base",
24      "../../../modules/rtp_rtcp:rtp_rtcp_format",
25      "../../../pc:media_session",
26      "../../../pc:session_description",
27    ]
28  }
29}
30