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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 if (!build_with_chromium && is_clang) { | 139 if (!build_with_chromium && is_clang) { |
140 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 140 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
141 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 141 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
142 } | 142 } |
143 } | 143 } |
144 | 144 |
145 rtc_source_set("remote_bitrate_estimator_unittests") { | 145 rtc_source_set("remote_bitrate_estimator_unittests") { |
146 testonly = true | 146 testonly = true |
147 sources = [ | 147 sources = [ |
148 "aimd_rate_control_unittest.cc", | 148 "aimd_rate_control_unittest.cc", |
149 "include/mock/mock_remote_bitrate_estimator.h", | |
150 "include/mock/mock_remote_bitrate_observer.h", | 149 "include/mock/mock_remote_bitrate_observer.h", |
151 "inter_arrival_unittest.cc", | 150 "inter_arrival_unittest.cc", |
152 "overuse_detector_unittest.cc", | 151 "overuse_detector_unittest.cc", |
153 "remote_bitrate_estimator_abs_send_time_unittest.cc", | 152 "remote_bitrate_estimator_abs_send_time_unittest.cc", |
154 "remote_bitrate_estimator_single_stream_unittest.cc", | 153 "remote_bitrate_estimator_single_stream_unittest.cc", |
155 "remote_bitrate_estimator_unittest_helper.cc", | 154 "remote_bitrate_estimator_unittest_helper.cc", |
156 "remote_bitrate_estimator_unittest_helper.h", | 155 "remote_bitrate_estimator_unittest_helper.h", |
157 "remote_estimator_proxy_unittest.cc", | 156 "remote_estimator_proxy_unittest.cc", |
158 "send_time_history_unittest.cc", | 157 "send_time_history_unittest.cc", |
159 "test/bwe_test_framework_unittest.cc", | 158 "test/bwe_test_framework_unittest.cc", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 } | 208 } |
210 | 209 |
211 if (is_win) { | 210 if (is_win) { |
212 cflags = [ | 211 cflags = [ |
213 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 212 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
214 "/wd4373", # virtual function override. | 213 "/wd4373", # virtual function override. |
215 ] | 214 ] |
216 } | 215 } |
217 } | 216 } |
218 } | 217 } |
OLD | NEW |