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 "rate_statistics.cc", | |
14 "rate_statistics.h", | |
15 ] | 13 ] |
16 | 14 |
17 configs += [ "../../:common_inherited_config" ] | 15 configs += [ "../../:common_inherited_config" ] |
18 | 16 |
19 deps = [ | 17 deps = [ |
20 ":rbe_components", | 18 ":rbe_components", |
21 "../..:webrtc_common", | 19 "../..:webrtc_common", |
20 "../../base:rtc_base", | |
pbos-webrtc
2016/02/19 11:26:39
Doesn't this cause Chromium to depend on rtc_base?
tkchin_webrtc
2016/02/19 18:51:09
If that is the case, what do you propose to do wit
pbos-webrtc
2016/02/19 18:57:49
I see nothing scary in rate_statistics that wouldn
tkchin_webrtc
2016/02/19 23:30:04
Done.
| |
22 "../../system_wrappers", | 21 "../../system_wrappers", |
23 ] | 22 ] |
24 } | 23 } |
25 | 24 |
26 source_set("rbe_components") { | 25 source_set("rbe_components") { |
27 sources = [ | 26 sources = [ |
28 "aimd_rate_control.cc", | 27 "aimd_rate_control.cc", |
29 "aimd_rate_control.h", | 28 "aimd_rate_control.h", |
30 "include/send_time_history.h", | 29 "include/send_time_history.h", |
31 "inter_arrival.cc", | 30 "inter_arrival.cc", |
(...skipping 16 matching lines...) Expand all Loading... | |
48 deps = [ | 47 deps = [ |
49 "../..:webrtc_common", | 48 "../..:webrtc_common", |
50 ] | 49 ] |
51 | 50 |
52 if (is_clang) { | 51 if (is_clang) { |
53 # Suppress warnings from Chrome's Clang plugins. | 52 # Suppress warnings from Chrome's Clang plugins. |
54 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 53 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
55 configs -= [ "//build/config/clang:find_bad_constructs" ] | 54 configs -= [ "//build/config/clang:find_bad_constructs" ] |
56 } | 55 } |
57 } | 56 } |
OLD | NEW |