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_adapter.cc", |
| 34 "transport_feedback_adapter.h", |
33 ] | 35 ] |
34 | 36 |
35 if (!rtc_include_tests) { | 37 if (!rtc_include_tests) { |
36 if (rtc_enable_bwe_test_logging) { | 38 if (rtc_enable_bwe_test_logging) { |
37 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ] | 39 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ] |
38 sources += [ "test/bwe_test_logging.cc" ] | 40 sources += [ "test/bwe_test_logging.cc" ] |
39 } else { | 41 } else { |
40 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ] | 42 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ] |
41 } | 43 } |
42 } | 44 } |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 } | 108 } |
107 | 109 |
108 deps = [ | 110 deps = [ |
109 "../../test:test_support", | 111 "../../test:test_support", |
110 "../pacing", | 112 "../pacing", |
111 "//testing/gmock", | 113 "//testing/gmock", |
112 "//testing/gtest", | 114 "//testing/gtest", |
113 ] | 115 ] |
114 } | 116 } |
115 } | 117 } |
OLD | NEW |