| 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 | 10 |
| 11 rtc_source_set("remote_bitrate_estimator") { | 11 rtc_static_library("remote_bitrate_estimator") { |
| 12 sources = [ | 12 sources = [ |
| 13 "aimd_rate_control.cc", | 13 "aimd_rate_control.cc", |
| 14 "aimd_rate_control.h", | 14 "aimd_rate_control.h", |
| 15 "bwe_defines.cc", | 15 "bwe_defines.cc", |
| 16 "include/bwe_defines.h", | 16 "include/bwe_defines.h", |
| 17 "include/remote_bitrate_estimator.h", | 17 "include/remote_bitrate_estimator.h", |
| 18 "include/send_time_history.h", | 18 "include/send_time_history.h", |
| 19 "inter_arrival.cc", | 19 "inter_arrival.cc", |
| 20 "inter_arrival.h", | 20 "inter_arrival.h", |
| 21 "overuse_detector.cc", | 21 "overuse_detector.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 49 } | 49 } |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 "../..:webrtc_common", | 52 "../..:webrtc_common", |
| 53 "../../base:rtc_base_approved", | 53 "../../base:rtc_base_approved", |
| 54 "../../system_wrappers", | 54 "../../system_wrappers", |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 | 57 |
| 58 if (rtc_include_tests) { | 58 if (rtc_include_tests) { |
| 59 rtc_source_set("bwe_simulator") { | 59 rtc_static_library("bwe_simulator") { |
| 60 testonly = true | 60 testonly = true |
| 61 sources = [ | 61 sources = [ |
| 62 "bwe_simulations.cc", | 62 "bwe_simulations.cc", |
| 63 "test/bwe.cc", | 63 "test/bwe.cc", |
| 64 "test/bwe.h", | 64 "test/bwe.h", |
| 65 "test/bwe_test.cc", | 65 "test/bwe_test.cc", |
| 66 "test/bwe_test.h", | 66 "test/bwe_test.h", |
| 67 "test/bwe_test_baselinefile.cc", | 67 "test/bwe_test_baselinefile.cc", |
| 68 "test/bwe_test_baselinefile.h", | 68 "test/bwe_test_baselinefile.h", |
| 69 "test/bwe_test_fileutils.cc", | 69 "test/bwe_test_fileutils.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 } | 108 } |
| 109 | 109 |
| 110 deps = [ | 110 deps = [ |
| 111 "../../test:test_support", | 111 "../../test:test_support", |
| 112 "../pacing", | 112 "../pacing", |
| 113 "//testing/gmock", | 113 "//testing/gmock", |
| 114 "//testing/gtest", | 114 "//testing/gtest", |
| 115 ] | 115 ] |
| 116 } | 116 } |
| 117 } | 117 } |
| OLD | NEW |