| 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", |
| 22 "../../system_wrappers", | 20 "../../system_wrappers", |
| 23 ] | 21 ] |
| 24 } | 22 } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 48 deps = [ | 46 deps = [ |
| 49 "../..:webrtc_common", | 47 "../..:webrtc_common", |
| 50 ] | 48 ] |
| 51 | 49 |
| 52 if (is_clang) { | 50 if (is_clang) { |
| 53 # Suppress warnings from Chrome's Clang plugins. | 51 # Suppress warnings from Chrome's Clang plugins. |
| 54 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 52 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 55 configs -= [ "//build/config/clang:find_bad_constructs" ] | 53 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 56 } | 54 } |
| 57 } | 55 } |
| OLD | NEW |