| 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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
| 10 | 10 |
| 11 rtc_static_library("congestion_controller") { | 11 rtc_static_library("congestion_controller") { |
| 12 sources = [ | 12 sources = [ |
| 13 "acknowledge_bitrate_estimator.cc", |
| 14 "acknowledge_bitrate_estimator.h", |
| 13 "congestion_controller.cc", | 15 "congestion_controller.cc", |
| 14 "delay_based_bwe.cc", | 16 "delay_based_bwe.cc", |
| 15 "delay_based_bwe.h", | 17 "delay_based_bwe.h", |
| 16 "include/congestion_controller.h", | 18 "include/congestion_controller.h", |
| 17 "include/receive_side_congestion_controller.h", | 19 "include/receive_side_congestion_controller.h", |
| 18 "include/send_side_congestion_controller.h", | 20 "include/send_side_congestion_controller.h", |
| 19 "median_slope_estimator.cc", | 21 "median_slope_estimator.cc", |
| 20 "median_slope_estimator.h", | 22 "median_slope_estimator.h", |
| 21 "probe_bitrate_estimator.cc", | 23 "probe_bitrate_estimator.cc", |
| 22 "probe_bitrate_estimator.h", | 24 "probe_bitrate_estimator.h", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 sources = [ | 111 sources = [ |
| 110 "include/mock/mock_congestion_observer.h", | 112 "include/mock/mock_congestion_observer.h", |
| 111 "include/mock/mock_send_side_congestion_controller.h", | 113 "include/mock/mock_send_side_congestion_controller.h", |
| 112 ] | 114 ] |
| 113 deps = [ | 115 deps = [ |
| 114 ":congestion_controller", | 116 ":congestion_controller", |
| 115 "../../test:test_support", | 117 "../../test:test_support", |
| 116 ] | 118 ] |
| 117 } | 119 } |
| 118 } | 120 } |
| OLD | NEW |