2016-02-23 13:30:42 +01:00
|
|
|
# Copyright (c) 2014 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("../../build/webrtc.gni")
|
|
|
|
|
|
2016-09-23 00:38:52 -07:00
|
|
|
rtc_static_library("congestion_controller") {
|
2016-02-23 13:30:42 +01:00
|
|
|
sources = [
|
|
|
|
|
"congestion_controller.cc",
|
2016-06-17 09:21:34 -07:00
|
|
|
"delay_based_bwe.cc",
|
|
|
|
|
"delay_based_bwe.h",
|
2016-02-23 13:30:42 +01:00
|
|
|
"include/congestion_controller.h",
|
2016-08-01 08:49:04 -07:00
|
|
|
"probe_bitrate_estimator.cc",
|
|
|
|
|
"probe_bitrate_estimator.h",
|
2016-09-12 12:28:54 -07:00
|
|
|
"probe_controller.cc",
|
|
|
|
|
"probe_controller.h",
|
2016-09-30 10:06:51 +02:00
|
|
|
"transport_feedback_adapter.cc",
|
|
|
|
|
"transport_feedback_adapter.h",
|
2016-02-23 13:30:42 +01:00
|
|
|
]
|
|
|
|
|
|
2016-06-02 02:09:52 -07:00
|
|
|
# TODO(jschuh): Bug 1348: fix this warning.
|
|
|
|
|
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
|
|
|
|
|
2016-10-16 23:56:12 -07:00
|
|
|
if (!build_with_chromium && is_clang) {
|
|
|
|
|
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
2016-09-02 04:10:34 -07:00
|
|
|
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
2016-02-23 13:30:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
"../bitrate_controller",
|
|
|
|
|
"../pacing",
|
|
|
|
|
]
|
|
|
|
|
}
|