| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "../../rtc_base:gtest_prod", | 144 "../../rtc_base:gtest_prod", |
| 145 "../../rtc_base:rtc_base", | 145 "../../rtc_base:rtc_base", |
| 146 "../../rtc_base:rtc_base_approved", | 146 "../../rtc_base:rtc_base_approved", |
| 147 "../../system_wrappers", | 147 "../../system_wrappers", |
| 148 "../../test:test_support", | 148 "../../test:test_support", |
| 149 "../../voice_engine", | 149 "../../voice_engine", |
| 150 "../bitrate_controller", | 150 "../bitrate_controller", |
| 151 "../congestion_controller", | 151 "../congestion_controller", |
| 152 "../pacing", | 152 "../pacing", |
| 153 "../rtp_rtcp", | 153 "../rtp_rtcp", |
| 154 "../video_coding:video_coding_utility", |
| 154 "//testing/gmock", | 155 "//testing/gmock", |
| 155 "//testing/gtest", | 156 "//testing/gtest", |
| 156 ] | 157 ] |
| 157 } | 158 } |
| 158 | 159 |
| 159 rtc_source_set("remote_bitrate_estimator_perf_tests") { | 160 rtc_source_set("remote_bitrate_estimator_perf_tests") { |
| 160 testonly = true | 161 testonly = true |
| 161 | 162 |
| 162 # Skip restricting visibility on mobile platforms since the tests on those | 163 # Skip restricting visibility on mobile platforms since the tests on those |
| 163 # gets additional generated targets which would require many lines here to | 164 # gets additional generated targets which would require many lines here to |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 } | 255 } |
| 255 | 256 |
| 256 if (is_win) { | 257 if (is_win) { |
| 257 cflags = [ | 258 cflags = [ |
| 258 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 259 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 259 "/wd4373", # virtual function override. | 260 "/wd4373", # virtual function override. |
| 260 ] | 261 ] |
| 261 } | 262 } |
| 262 } | 263 } |
| 263 } | 264 } |
| OLD | NEW |