blob: f333b3f5e237a4df8d7af2f2be0ce645f6594dd6 [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",
29 "../../../system_wrappers",
30 "../../../system_wrappers:field_trial",
31 "../../utility",
32 ]
33}