kjellander@webrtc.org | 1227ab8 | 2014-06-23 19:21:07 +0000 | [diff] [blame] | 1 | # 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 | |
| 9 | source_set("remote_bitrate_estimator") { |
| 10 | sources = [ |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 11 | "include/bwe_defines.h", |
| 12 | "include/remote_bitrate_estimator.h", |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 13 | ] |
| 14 | |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 15 | configs += [ "../../:common_inherited_config" ] |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 16 | |
| 17 | deps = [ |
| 18 | ":rbe_components", |
kwiberg@webrtc.org | ac2d27d | 2015-02-26 13:59:22 +0000 | [diff] [blame] | 19 | "../..:webrtc_common", |
kjellander@webrtc.org | b8caf6a | 2014-09-30 18:05:02 +0000 | [diff] [blame] | 20 | "../../system_wrappers", |
| 21 | ] |
| 22 | } |
| 23 | |
| 24 | source_set("rbe_components") { |
| 25 | sources = [ |
pbos@webrtc.org | 9f79fe6 | 2014-12-04 15:34:06 +0000 | [diff] [blame] | 26 | "aimd_rate_control.cc", |
| 27 | "aimd_rate_control.h", |
sprang | 318673c | 2015-09-04 04:43:21 -0700 | [diff] [blame] | 28 | "include/send_time_history.h", |
pbos@webrtc.org | 9f79fe6 | 2014-12-04 15:34:06 +0000 | [diff] [blame] | 29 | "inter_arrival.cc", |
| 30 | "inter_arrival.h", |
kjellander@webrtc.org | 1227ab8 | 2014-06-23 19:21:07 +0000 | [diff] [blame] | 31 | "overuse_detector.cc", |
| 32 | "overuse_detector.h", |
pbos@webrtc.org | 9f79fe6 | 2014-12-04 15:34:06 +0000 | [diff] [blame] | 33 | "overuse_estimator.cc", |
| 34 | "overuse_estimator.h", |
| 35 | "remote_bitrate_estimator_abs_send_time.cc", |
kjellander@webrtc.org | 1227ab8 | 2014-06-23 19:21:07 +0000 | [diff] [blame] | 36 | "remote_bitrate_estimator_single_stream.cc", |
Erik Språng | 6b8d355 | 2015-09-24 15:06:57 +0200 | [diff] [blame] | 37 | "remote_estimator_proxy.cc", |
| 38 | "remote_estimator_proxy.h", |
sprang | 318673c | 2015-09-04 04:43:21 -0700 | [diff] [blame] | 39 | "send_time_history.cc", |
Erik Språng | 6b8d355 | 2015-09-24 15:06:57 +0200 | [diff] [blame] | 40 | "transport_feedback_adapter.cc", |
| 41 | "transport_feedback_adapter.h", |
kjellander@webrtc.org | 1227ab8 | 2014-06-23 19:21:07 +0000 | [diff] [blame] | 42 | ] |
kjellander@webrtc.org | 9bef551 | 2014-07-13 09:02:54 +0000 | [diff] [blame] | 43 | |
kjellander@webrtc.org | f21ea91 | 2014-09-28 17:37:22 +0000 | [diff] [blame] | 44 | configs += [ "../..:common_config" ] |
| 45 | public_configs = [ "../..:common_inherited_config" ] |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 46 | deps = [ |
| 47 | "../..:webrtc_common", |
| 48 | ] |
kjellander@webrtc.org | 42ee5b5 | 2014-08-25 14:15:35 +0000 | [diff] [blame] | 49 | |
| 50 | if (is_clang) { |
| 51 | # Suppress warnings from Chrome's Clang plugins. |
| 52 | # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 53 | configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 54 | } |
kjellander@webrtc.org | 1227ab8 | 2014-06-23 19:21:07 +0000 | [diff] [blame] | 55 | } |