xref: /aosp_15_r20/external/webrtc/net/dcsctp/BUILD.gn (revision d9f758449e529ab9291ac668be2861e7a55c2422)
1# Copyright (c) 2021 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_test("dcsctp_unittests") {
13    testonly = true
14    deps = [
15      "../../test:test_main",
16      "common:dcsctp_common_unittests",
17      "fuzzers:dcsctp_fuzzers_unittests",
18      "packet:dcsctp_packet_unittests",
19      "public:dcsctp_public_unittests",
20      "rx:dcsctp_rx_unittests",
21      "socket:dcsctp_socket_unittests",
22      "timer:dcsctp_timer_unittests",
23      "tx:dcsctp_tx_unittests",
24    ]
25  }
26}
27