It is a follow up CL to https://webrtc-review.googlesource.com/c/src/+/179368. Now when network stats became more complex structure it's better to hide its implementation details and provide an interface for read-only access. Bug: webrtc:11756 Change-Id: I1980ef938f8de0c6aa90092d1dc90a14a82e0ee1 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/179840 Commit-Queue: Tommi <tommi@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31784}
30 lines
873 B
Plaintext
30 lines
873 B
Plaintext
# Copyright (c) 2019 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_library("network_emulation") {
|
|
visibility = [ "*" ]
|
|
|
|
sources = [
|
|
"network_emulation_interfaces.cc",
|
|
"network_emulation_interfaces.h",
|
|
]
|
|
|
|
deps = [
|
|
"../..:array_view",
|
|
"../../../rtc_base",
|
|
"../../../rtc_base:checks",
|
|
"../../../rtc_base:rtc_base_approved",
|
|
"../../units:data_rate",
|
|
"../../units:data_size",
|
|
"../../units:timestamp",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
|
|
}
|