blob: ce39abdb97789d57616f2b0336b5efe41e5b1513 [file] [log] [blame]
# Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
import("../../../webrtc.gni")
rtc_source_set("rtt_stats") {
sources = [
"rtt_stats.cc",
"rtt_stats.h",
]
deps = [
"../../../rtc_base:rtc_base_approved",
"../network_control",
]
}
if (rtc_include_tests) {
rtc_source_set("bbr_unittests") {
testonly = true
sources = [
"rtt_stats_unittest.cc",
]
deps = [
":rtt_stats",
"../../../test:test_support",
"../network_control",
]
}
}