blob: d72850091cb702406ecfe1bbaff37b336da053a7 [file] [log] [blame]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +00001# Copyright (c) 2014 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
9source_set("remote_bitrate_estimator") {
10 sources = [
kjellander@webrtc.orgb8caf6a2014-09-30 18:05:02 +000011 "include/bwe_defines.h",
12 "include/remote_bitrate_estimator.h",
13 "rate_statistics.cc",
14 "rate_statistics.h",
15 ]
16
17 configs += [ "../../:common_inherited_config"]
18
19 deps = [
20 ":rbe_components",
21 "../../system_wrappers",
22 ]
23}
24
25source_set("rbe_components") {
26 sources = [
pbos@webrtc.org9f79fe62014-12-04 15:34:06 +000027 "aimd_rate_control.cc",
28 "aimd_rate_control.h",
29 "inter_arrival.cc",
30 "inter_arrival.h",
31 "mimd_rate_control.cc",
32 "mimd_rate_control.h",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000033 "overuse_detector.cc",
34 "overuse_detector.h",
pbos@webrtc.org9f79fe62014-12-04 15:34:06 +000035 "overuse_estimator.cc",
36 "overuse_estimator.h",
37 "remote_bitrate_estimator_abs_send_time.cc",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000038 "remote_bitrate_estimator_single_stream.cc",
39 "remote_rate_control.cc",
40 "remote_rate_control.h",
41 ]
kjellander@webrtc.org9bef5512014-07-13 09:02:54 +000042
kjellander@webrtc.orgf21ea912014-09-28 17:37:22 +000043 configs += [ "../..:common_config" ]
44 public_configs = [ "../..:common_inherited_config" ]
kjellander@webrtc.org42ee5b52014-08-25 14:15:35 +000045
46 if (is_clang) {
47 # Suppress warnings from Chrome's Clang plugins.
48 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
49 configs -= [ "//build/config/clang:find_bad_constructs" ]
50 }
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000051}