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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 | 127 |
128 rtc_source_set("remote_bitrate_estimator_perf_tests") { | 128 rtc_source_set("remote_bitrate_estimator_perf_tests") { |
129 testonly = true | 129 testonly = true |
130 sources = [ | 130 sources = [ |
131 "remote_bitrate_estimators_test.cc", | 131 "remote_bitrate_estimators_test.cc", |
132 ] | 132 ] |
133 deps = [ | 133 deps = [ |
134 ":bwe_simulator_lib", | 134 ":bwe_simulator_lib", |
135 ":remote_bitrate_estimator", | 135 ":remote_bitrate_estimator", |
136 "../../base:rtc_base_approved", | 136 "../../base:rtc_base_approved", |
137 "../../test:fileutils", | 137 "../../test:test_support", |
138 ] | 138 ] |
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 = [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 } | 208 } |
209 | 209 |
210 if (is_win) { | 210 if (is_win) { |
211 cflags = [ | 211 cflags = [ |
212 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 212 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
213 "/wd4373", # virtual function override. | 213 "/wd4373", # virtual function override. |
214 ] | 214 ] |
215 } | 215 } |
216 } | 216 } |
217 } | 217 } |
OLD | NEW |