| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 "../../rtc_base:rtc_base", | 54 "../../rtc_base:rtc_base", |
| 55 "../../rtc_base:rtc_base_approved", | 55 "../../rtc_base:rtc_base_approved", |
| 56 "../../system_wrappers", | 56 "../../system_wrappers", |
| 57 ] | 57 ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 if (rtc_include_tests) { | 60 if (rtc_include_tests) { |
| 61 rtc_static_library("bwe_simulator_lib") { | 61 rtc_static_library("bwe_simulator_lib") { |
| 62 testonly = true | 62 testonly = true |
| 63 sources = [ | 63 sources = [ |
| 64 "test/bbr_paced_sender.cc", |
| 65 "test/bbr_paced_sender.h", |
| 64 "test/bwe.cc", | 66 "test/bwe.cc", |
| 65 "test/bwe.h", | 67 "test/bwe.h", |
| 66 "test/bwe_test.cc", | 68 "test/bwe_test.cc", |
| 67 "test/bwe_test.h", | 69 "test/bwe_test.h", |
| 68 "test/bwe_test_baselinefile.cc", | 70 "test/bwe_test_baselinefile.cc", |
| 69 "test/bwe_test_baselinefile.h", | 71 "test/bwe_test_baselinefile.h", |
| 70 "test/bwe_test_fileutils.cc", | 72 "test/bwe_test_fileutils.cc", |
| 71 "test/bwe_test_fileutils.h", | 73 "test/bwe_test_fileutils.h", |
| 72 "test/bwe_test_framework.cc", | 74 "test/bwe_test_framework.cc", |
| 73 "test/bwe_test_framework.h", | 75 "test/bwe_test_framework.h", |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 } | 246 } |
| 245 | 247 |
| 246 if (is_win) { | 248 if (is_win) { |
| 247 cflags = [ | 249 cflags = [ |
| 248 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 250 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 249 "/wd4373", # virtual function override. | 251 "/wd4373", # virtual function override. |
| 250 ] | 252 ] |
| 251 } | 253 } |
| 252 } | 254 } |
| 253 } | 255 } |
| OLD | NEW |