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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 ] | 340 ] |
341 deps = [ | 341 deps = [ |
342 ":fec_test_helper", | 342 ":fec_test_helper", |
343 ":mock_rtp_rtcp", | 343 ":mock_rtp_rtcp", |
344 ":rtp_rtcp", | 344 ":rtp_rtcp", |
345 "..:module_api", | 345 "..:module_api", |
346 "../..:webrtc_common", | 346 "../..:webrtc_common", |
347 "../../api:array_view", | 347 "../../api:array_view", |
348 "../../api:libjingle_peerconnection_api", | 348 "../../api:libjingle_peerconnection_api", |
349 "../../api:transport_api", | 349 "../../api:transport_api", |
| 350 "../../call:rtp_receiver", |
350 "../../common_video:common_video", | 351 "../../common_video:common_video", |
351 "../../rtc_base:rtc_base_approved", | 352 "../../rtc_base:rtc_base_approved", |
352 "../../system_wrappers:system_wrappers", | 353 "../../system_wrappers:system_wrappers", |
353 "../../test:field_trial", | 354 "../../test:field_trial", |
354 "../../test:rtp_test_utils", | 355 "../../test:rtp_test_utils", |
355 "../../test:test_common", | 356 "../../test:test_common", |
356 "../../test:test_support", | 357 "../../test:test_support", |
357 "//testing/gmock", | 358 "//testing/gmock", |
358 ] | 359 ] |
359 | 360 |
360 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 361 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
361 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 362 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
362 if (!build_with_chromium && is_clang) { | 363 if (!build_with_chromium && is_clang) { |
363 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 364 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
364 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 365 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
365 } | 366 } |
366 } | 367 } |
367 } | 368 } |
OLD | NEW |