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("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 | 10 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ] | 165 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ] |
166 } | 166 } |
167 | 167 |
168 if (!build_with_chromium && is_clang) { | 168 if (!build_with_chromium && is_clang) { |
169 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 169 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
170 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 170 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
171 } | 171 } |
172 | 172 |
173 deps = [ | 173 deps = [ |
174 "../..:webrtc_common", | 174 "../..:webrtc_common", |
| 175 "../../api:transport_api", |
175 "../../common_video", | 176 "../../common_video", |
176 "../../system_wrappers", | 177 "../../system_wrappers", |
177 "../remote_bitrate_estimator", | 178 "../remote_bitrate_estimator", |
178 ] | 179 ] |
179 | 180 |
180 # TODO(jschuh): Bug 1348: fix this warning. | 181 # TODO(jschuh): Bug 1348: fix this warning. |
181 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 182 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
182 | 183 |
183 if (is_win) { | 184 if (is_win) { |
184 cflags = [ | 185 cflags = [ |
(...skipping 12 matching lines...) Expand all Loading... |
197 "test/testFec/test_packet_masks_metrics.cc", | 198 "test/testFec/test_packet_masks_metrics.cc", |
198 ] | 199 ] |
199 | 200 |
200 deps = [ | 201 deps = [ |
201 ":rtp_rtcp", | 202 ":rtp_rtcp", |
202 "//testing/gtest", | 203 "//testing/gtest", |
203 "//webrtc/test:test_support_main", | 204 "//webrtc/test:test_support_main", |
204 ] | 205 ] |
205 } # test_packet_masks_metrics | 206 } # test_packet_masks_metrics |
206 } | 207 } |
OLD | NEW |