blob: fd3a5fa5fcf5636a07f3b80b7cb446f4cc681f3c [file] [log] [blame]
Mirko Bonadei9ca73652020-05-30 17:31:46 +02001# Copyright (c) 2020 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("nack_module") {
12 sources = [
13 "nack_module.cc",
14 "nack_module.h",
15 ]
16
17 deps = [
18 "..:nack_module",
19 "../..:module_api",
20 "../../../api/units:time_delta",
21 "../../../api/units:timestamp",
22 "../../../rtc_base:checks",
23 "../../../rtc_base:criticalsection",
24 "../../../rtc_base:deprecation",
25 "../../../rtc_base:logging",
26 "../../../rtc_base:macromagic",
27 "../../../rtc_base:rtc_numerics",
28 "../../../rtc_base/experiments:field_trial_parser",
Markus Handell6deec382020-07-07 12:17:12 +020029 "../../../rtc_base/synchronization:mutex",
Mirko Bonadei9ca73652020-05-30 17:31:46 +020030 "../../../system_wrappers",
31 "../../../system_wrappers:field_trial",
32 "../../utility",
33 ]
34}