| 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 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 } | 63 } |
| 64 | 64 |
| 65 if (rtc_include_tests) { | 65 if (rtc_include_tests) { |
| 66 rtc_source_set("congestion_controller_unittests") { | 66 rtc_source_set("congestion_controller_unittests") { |
| 67 testonly = true | 67 testonly = true |
| 68 | 68 |
| 69 # Skip restricting visibility on mobile platforms since the tests on those | 69 # Skip restricting visibility on mobile platforms since the tests on those |
| 70 # gets additional generated targets which would require many lines here to | 70 # gets additional generated targets which would require many lines here to |
| 71 # cover (which would be confusing to read and hard to maintain). | 71 # cover (which would be confusing to read and hard to maintain). |
| 72 if (!is_android && !is_ios) { | 72 if (!is_android && !is_ios) { |
| 73 visibility = [ "//webrtc/modules:modules_unittests" ] | 73 visibility = [ "..:modules_unittests" ] |
| 74 } | 74 } |
| 75 sources = [ | 75 sources = [ |
| 76 "congestion_controller_unittest.cc", | 76 "congestion_controller_unittest.cc", |
| 77 "congestion_controller_unittests_helper.cc", | 77 "congestion_controller_unittests_helper.cc", |
| 78 "congestion_controller_unittests_helper.h", | 78 "congestion_controller_unittests_helper.h", |
| 79 "delay_based_bwe_unittest.cc", | 79 "delay_based_bwe_unittest.cc", |
| 80 "delay_based_bwe_unittest_helper.cc", | 80 "delay_based_bwe_unittest_helper.cc", |
| 81 "delay_based_bwe_unittest_helper.h", | 81 "delay_based_bwe_unittest_helper.h", |
| 82 "median_slope_estimator_unittest.cc", | 82 "median_slope_estimator_unittest.cc", |
| 83 "probe_bitrate_estimator_unittest.cc", | 83 "probe_bitrate_estimator_unittest.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 111 sources = [ | 111 sources = [ |
| 112 "include/mock/mock_congestion_observer.h", | 112 "include/mock/mock_congestion_observer.h", |
| 113 "include/mock/mock_send_side_congestion_controller.h", | 113 "include/mock/mock_send_side_congestion_controller.h", |
| 114 ] | 114 ] |
| 115 deps = [ | 115 deps = [ |
| 116 ":congestion_controller", | 116 ":congestion_controller", |
| 117 "../../test:test_support", | 117 "../../test:test_support", |
| 118 ] | 118 ] |
| 119 } | 119 } |
| 120 } | 120 } |
| OLD | NEW |