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 = [ |
(...skipping 11 matching lines...) Expand all Loading... |
22 "../../system_wrappers", | 22 "../../system_wrappers", |
23 ] | 23 ] |
24 } | 24 } |
25 | 25 |
26 source_set("rbe_components") { | 26 source_set("rbe_components") { |
27 sources = [ | 27 sources = [ |
28 "aimd_rate_control.cc", | 28 "aimd_rate_control.cc", |
29 "aimd_rate_control.h", | 29 "aimd_rate_control.h", |
30 "inter_arrival.cc", | 30 "inter_arrival.cc", |
31 "inter_arrival.h", | 31 "inter_arrival.h", |
32 "mimd_rate_control.cc", | |
33 "mimd_rate_control.h", | |
34 "overuse_detector.cc", | 32 "overuse_detector.cc", |
35 "overuse_detector.h", | 33 "overuse_detector.h", |
36 "overuse_estimator.cc", | 34 "overuse_estimator.cc", |
37 "overuse_estimator.h", | 35 "overuse_estimator.h", |
38 "remote_bitrate_estimator_abs_send_time.cc", | 36 "remote_bitrate_estimator_abs_send_time.cc", |
39 "remote_bitrate_estimator_single_stream.cc", | 37 "remote_bitrate_estimator_single_stream.cc", |
40 "remote_rate_control.cc", | |
41 "remote_rate_control.h", | |
42 ] | 38 ] |
43 | 39 |
44 configs += [ "../..:common_config" ] | 40 configs += [ "../..:common_config" ] |
45 public_configs = [ "../..:common_inherited_config" ] | 41 public_configs = [ "../..:common_inherited_config" ] |
46 deps = [ | 42 deps = [ |
47 "../..:webrtc_common", | 43 "../..:webrtc_common", |
48 ] | 44 ] |
49 | 45 |
50 if (is_clang) { | 46 if (is_clang) { |
51 # Suppress warnings from Chrome's Clang plugins. | 47 # Suppress warnings from Chrome's Clang plugins. |
52 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 48 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
53 configs -= [ "//build/config/clang:find_bad_constructs" ] | 49 configs -= [ "//build/config/clang:find_bad_constructs" ] |
54 } | 50 } |
55 } | 51 } |
OLD | NEW |