blob: 8b38a65ca1476cb6db2de5a47e31f7f05f9c1ce2 [file] [log] [blame]
Victor Boivie7d3c49a2021-03-25 12:11:031# 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",
Victor Boiviea4d5e242021-03-30 08:03:5116 "common:dcsctp_common_unittests",
Victor Boiviea30362c2021-04-11 17:56:1917 "fuzzers:dcsctp_fuzzers_unittests",
Victor Boivie7d3c49a2021-03-25 12:11:0318 "packet:dcsctp_packet_unittests",
Victor Boiviea8655192021-04-01 06:23:5419 "public:dcsctp_public_unittests",
Victor Boivieb2d539b2021-04-01 21:36:0320 "rx:dcsctp_rx_unittests",
Victor Boivieb9bdf642021-04-06 17:55:5121 "socket:dcsctp_socket_unittests",
Victor Boivie6fa0cfa2021-03-30 20:54:4122 "timer:dcsctp_timer_unittests",
Victor Boivie762f21c2021-04-03 22:15:4723 "tx:dcsctp_tx_unittests",
Victor Boivie7d3c49a2021-03-25 12:11:0324 ]
25 }
26}