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