| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 rtc_test("bwe_simulations_tests") { | 214 rtc_test("bwe_simulations_tests") { |
| 215 testonly = true | 215 testonly = true |
| 216 | 216 |
| 217 sources = [ | 217 sources = [ |
| 218 "bwe_simulations.cc", | 218 "bwe_simulations.cc", |
| 219 ] | 219 ] |
| 220 deps = [ | 220 deps = [ |
| 221 ":bwe_simulator_lib", | 221 ":bwe_simulator_lib", |
| 222 ":remote_bitrate_estimator", | 222 ":remote_bitrate_estimator", |
| 223 "../..:webrtc_common", | 223 "../..:webrtc_common", |
| 224 "../../call:call", |
| 224 "../../rtc_base:rtc_base_approved", | 225 "../../rtc_base:rtc_base_approved", |
| 225 "../../test:test_main", | 226 "../../test:test_main", |
| 226 "//testing/gmock", | 227 "//testing/gmock", |
| 227 "//testing/gtest", | 228 "//testing/gtest", |
| 228 "//third_party/gflags", | 229 "//third_party/gflags", |
| 229 ] | 230 ] |
| 230 | 231 |
| 231 if (!build_with_chromium && is_clang) { | 232 if (!build_with_chromium && is_clang) { |
| 232 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 233 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 233 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 234 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 234 } | 235 } |
| 235 | 236 |
| 236 if (is_win) { | 237 if (is_win) { |
| 237 cflags = [ | 238 cflags = [ |
| 238 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 239 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 239 "/wd4373", # virtual function override. | 240 "/wd4373", # virtual function override. |
| 240 ] | 241 ] |
| 241 } | 242 } |
| 242 } | 243 } |
| 243 } | 244 } |
| OLD | NEW |