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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 "test/testFec/test_packet_masks_metrics.cc", | 204 "test/testFec/test_packet_masks_metrics.cc", |
205 ] | 205 ] |
206 | 206 |
207 deps = [ | 207 deps = [ |
208 ":rtp_rtcp", | 208 ":rtp_rtcp", |
209 "//testing/gtest", | 209 "//testing/gtest", |
210 "//webrtc/test:test_main", | 210 "//webrtc/test:test_main", |
211 ] | 211 ] |
212 } # test_packet_masks_metrics | 212 } # test_packet_masks_metrics |
213 | 213 |
| 214 rtc_source_set("rtp_rtcp_modules_tests") { |
| 215 testonly = true |
| 216 sources = [ |
| 217 "test/testFec/test_fec.cc", |
| 218 ] |
| 219 deps = [ |
| 220 ":rtp_rtcp", |
| 221 "../../base:rtc_base_approved", |
| 222 "../../test:test_support", |
| 223 ] |
| 224 if (!build_with_chromium && is_clang) { |
| 225 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 226 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 227 } |
| 228 } |
| 229 |
214 rtc_source_set("rtp_rtcp_unittests") { | 230 rtc_source_set("rtp_rtcp_unittests") { |
215 testonly = true | 231 testonly = true |
216 sources = [ | 232 sources = [ |
217 "mocks/mock_rtp_rtcp.h", | 233 "mocks/mock_rtp_rtcp.h", |
218 "source/byte_io_unittest.cc", | 234 "source/byte_io_unittest.cc", |
219 "source/fec_test_helper.cc", | 235 "source/fec_test_helper.cc", |
220 "source/fec_test_helper.h", | 236 "source/fec_test_helper.h", |
221 "source/flexfec_header_reader_writer_unittest.cc", | 237 "source/flexfec_header_reader_writer_unittest.cc", |
222 "source/flexfec_receiver_unittest.cc", | 238 "source/flexfec_receiver_unittest.cc", |
223 "source/flexfec_sender_unittest.cc", | 239 "source/flexfec_sender_unittest.cc", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 ] | 309 ] |
294 | 310 |
295 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 311 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
296 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 312 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
297 if (!build_with_chromium && is_clang) { | 313 if (!build_with_chromium && is_clang) { |
298 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 314 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
299 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 315 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
300 } | 316 } |
301 } | 317 } |
302 } | 318 } |
OLD | NEW |