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 |
(...skipping 12 matching lines...) Expand all Loading... |
23 "overuse_estimator.cc", | 23 "overuse_estimator.cc", |
24 "overuse_estimator.h", | 24 "overuse_estimator.h", |
25 "remote_bitrate_estimator_abs_send_time.cc", | 25 "remote_bitrate_estimator_abs_send_time.cc", |
26 "remote_bitrate_estimator_abs_send_time.h", | 26 "remote_bitrate_estimator_abs_send_time.h", |
27 "remote_bitrate_estimator_single_stream.cc", | 27 "remote_bitrate_estimator_single_stream.cc", |
28 "remote_bitrate_estimator_single_stream.h", | 28 "remote_bitrate_estimator_single_stream.h", |
29 "remote_estimator_proxy.cc", | 29 "remote_estimator_proxy.cc", |
30 "remote_estimator_proxy.h", | 30 "remote_estimator_proxy.h", |
31 "send_time_history.cc", | 31 "send_time_history.cc", |
32 "test/bwe_test_logging.h", | 32 "test/bwe_test_logging.h", |
| 33 "transport_feedback_packet_loss_tracker.cc", |
| 34 "transport_feedback_packet_loss_tracker.h", |
33 ] | 35 ] |
34 | 36 |
35 if (rtc_enable_bwe_test_logging) { | 37 if (rtc_enable_bwe_test_logging) { |
36 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ] | 38 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ] |
37 sources += [ "test/bwe_test_logging.cc" ] | 39 sources += [ "test/bwe_test_logging.cc" ] |
38 } else { | 40 } else { |
39 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ] | 41 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ] |
40 } | 42 } |
41 | 43 |
42 if (!build_with_chromium && is_clang) { | 44 if (!build_with_chromium && is_clang) { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 | 105 |
104 deps = [ | 106 deps = [ |
105 "../../test:test_support", | 107 "../../test:test_support", |
106 "../congestion_controller", | 108 "../congestion_controller", |
107 "../pacing", | 109 "../pacing", |
108 "//testing/gmock", | 110 "//testing/gmock", |
109 "//testing/gtest", | 111 "//testing/gtest", |
110 ] | 112 ] |
111 } | 113 } |
112 } | 114 } |
OLD | NEW |