blob: 487c0267d5f9c5495c1b4ef5e9a5df213592e3e2 [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",
Mirko Bonadei9ca73652020-05-30 17:31:46 +020024 "../../../rtc_base:logging",
25 "../../../rtc_base:macromagic",
26 "../../../rtc_base:rtc_numerics",
27 "../../../rtc_base/experiments:field_trial_parser",
Markus Handell6deec382020-07-07 12:17:12 +020028 "../../../rtc_base/synchronization:mutex",
Mirko Bonadei9ca73652020-05-30 17:31:46 +020029 "../../../system_wrappers",
30 "../../../system_wrappers:field_trial",
31 "../../utility",
32 ]
Danil Chapovalove9041612021-02-22 12:43:39 +010033 absl_deps = [ "//third_party/abseil-cpp/absl/base:core_headers" ]
Mirko Bonadei9ca73652020-05-30 17:31:46 +020034}