| 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 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| 11 | 11 |
| 12 declare_args() { | 12 declare_args() { |
| 13 # Set this to true to enable BWE test logging. | 13 # Set this to true to enable BWE test logging. |
| 14 rtc_enable_bwe_test_logging = false | 14 rtc_enable_bwe_test_logging = false |
| 15 } | 15 } |
| 16 | 16 |
| 17 source_set("remote_bitrate_estimator") { | 17 source_set("remote_bitrate_estimator") { |
| 18 sources = [ | 18 sources = [ |
| 19 "aimd_rate_control.cc", | 19 "aimd_rate_control.cc", |
| 20 "aimd_rate_control.h", | 20 "aimd_rate_control.h", |
| 21 "bwe_defines.cc", |
| 21 "include/bwe_defines.h", | 22 "include/bwe_defines.h", |
| 22 "include/remote_bitrate_estimator.h", | 23 "include/remote_bitrate_estimator.h", |
| 23 "include/send_time_history.h", | 24 "include/send_time_history.h", |
| 24 "inter_arrival.cc", | 25 "inter_arrival.cc", |
| 25 "inter_arrival.h", | 26 "inter_arrival.h", |
| 26 "overuse_detector.cc", | 27 "overuse_detector.cc", |
| 27 "overuse_detector.h", | 28 "overuse_detector.h", |
| 28 "overuse_estimator.cc", | 29 "overuse_estimator.cc", |
| 29 "overuse_estimator.h", | 30 "overuse_estimator.h", |
| 30 "remote_bitrate_estimator_abs_send_time.cc", | 31 "remote_bitrate_estimator_abs_send_time.cc", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 } | 117 } |
| 117 | 118 |
| 118 deps = [ | 119 deps = [ |
| 119 "../../test:test_support", | 120 "../../test:test_support", |
| 120 "../pacing", | 121 "../pacing", |
| 121 "//testing/gmock", | 122 "//testing/gmock", |
| 122 "//testing/gtest", | 123 "//testing/gtest", |
| 123 ] | 124 ] |
| 124 } | 125 } |
| 125 } | 126 } |
| OLD | NEW |