Splits network units into separate headers.

This CL moves the network units files into a separate folder with a
separate BUILD file. It also splits the units into separate files.
This prepares for moving all or some of the units to somewhere that
can be accessed by more components.

Bug: None
Change-Id: I4ebbc19088b024ba920b0b3c64e5f57431f4f955
Reviewed-on: https://webrtc-review.googlesource.com/68660
Commit-Queue: Sebastian Jansson <srte@webrtc.org>
Reviewed-by: Björn Terelius <terelius@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22861}
This commit is contained in:
Sebastian Jansson
2018-04-13 13:56:17 +02:00
committed by Commit Bot
parent 8cbb1c9162
commit 30bd4038cf
36 changed files with 1184 additions and 879 deletions

View File

@ -36,6 +36,7 @@ rtc_source_set("bbr_controller") {
"../../../rtc_base/experiments:congestion_controller_experiment",
"../../../rtc_base/system:fallthrough",
"../network_control",
"../network_control/units",
]
}
rtc_source_set("data_transfer_tracker") {
@ -47,7 +48,7 @@ rtc_source_set("data_transfer_tracker") {
deps = [
"../../../rtc_base:checks",
"../../../rtc_base:rtc_base_approved",
"../network_control",
"../network_control/units",
]
}
rtc_source_set("rtt_stats") {
@ -58,7 +59,7 @@ rtc_source_set("rtt_stats") {
]
deps = [
"../../../rtc_base:rtc_base_approved",
"../network_control",
"../network_control/units",
]
}
rtc_source_set("windowed_filter") {
@ -83,8 +84,8 @@ if (rtc_include_tests) {
":rtt_stats",
":windowed_filter",
"../../../test:test_support",
"../network_control",
"../network_control:network_control_test",
"../network_control/units",
]
if (!build_with_chromium && is_clang) {
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).