| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 source_set("remote_bitrate_estimator") { | 9 source_set("remote_bitrate_estimator") { |
| 10 sources = [ | 10 sources = [ |
| 11 "include/bwe_defines.h", | 11 "include/bwe_defines.h", |
| 12 "include/remote_bitrate_estimator.h", | 12 "include/remote_bitrate_estimator.h", |
| 13 "include/send_time_history.h", | |
| 14 "rate_statistics.cc", | 13 "rate_statistics.cc", |
| 15 "rate_statistics.h", | 14 "rate_statistics.h", |
| 16 "send_time_history.cc", | |
| 17 ] | 15 ] |
| 18 | 16 |
| 19 configs += [ "../../:common_inherited_config" ] | 17 configs += [ "../../:common_inherited_config" ] |
| 20 | 18 |
| 21 deps = [ | 19 deps = [ |
| 22 ":rbe_components", | 20 ":rbe_components", |
| 23 "../..:webrtc_common", | 21 "../..:webrtc_common", |
| 24 "../../system_wrappers", | 22 "../../system_wrappers", |
| 25 ] | 23 ] |
| 26 } | 24 } |
| 27 | 25 |
| 28 source_set("rbe_components") { | 26 source_set("rbe_components") { |
| 29 sources = [ | 27 sources = [ |
| 30 "aimd_rate_control.cc", | 28 "aimd_rate_control.cc", |
| 31 "aimd_rate_control.h", | 29 "aimd_rate_control.h", |
| 30 "include/send_time_history.h", |
| 32 "inter_arrival.cc", | 31 "inter_arrival.cc", |
| 33 "inter_arrival.h", | 32 "inter_arrival.h", |
| 34 "overuse_detector.cc", | 33 "overuse_detector.cc", |
| 35 "overuse_detector.h", | 34 "overuse_detector.h", |
| 36 "overuse_estimator.cc", | 35 "overuse_estimator.cc", |
| 37 "overuse_estimator.h", | 36 "overuse_estimator.h", |
| 38 "remote_bitrate_estimator_abs_send_time.cc", | 37 "remote_bitrate_estimator_abs_send_time.cc", |
| 39 "remote_bitrate_estimator_single_stream.cc", | 38 "remote_bitrate_estimator_single_stream.cc", |
| 39 "send_time_history.cc", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 configs += [ "../..:common_config" ] | 42 configs += [ "../..:common_config" ] |
| 43 public_configs = [ "../..:common_inherited_config" ] | 43 public_configs = [ "../..:common_inherited_config" ] |
| 44 deps = [ | 44 deps = [ |
| 45 "../..:webrtc_common", | 45 "../..:webrtc_common", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 if (is_clang) { | 48 if (is_clang) { |
| 49 # Suppress warnings from Chrome's Clang plugins. | 49 # Suppress warnings from Chrome's Clang plugins. |
| 50 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 50 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 51 configs -= [ "//build/config/clang:find_bad_constructs" ] | 51 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 52 } | 52 } |
| 53 } | 53 } |
| OLD | NEW |