OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 } | 54 } |
55 | 55 |
56 if (rtc_include_tests) { | 56 if (rtc_include_tests) { |
57 rtc_source_set("call_tests") { | 57 rtc_source_set("call_tests") { |
58 testonly = true | 58 testonly = true |
59 sources = [ | 59 sources = [ |
60 "bitrate_allocator_unittest.cc", | 60 "bitrate_allocator_unittest.cc", |
61 "bitrate_estimator_tests.cc", | 61 "bitrate_estimator_tests.cc", |
62 "call_unittest.cc", | 62 "call_unittest.cc", |
63 "flexfec_receive_stream_unittest.cc", | 63 "flexfec_receive_stream_unittest.cc", |
64 "packet_injection_tests.cc", | |
65 ] | 64 ] |
66 deps = [ | 65 deps = [ |
67 ":call", | 66 ":call", |
68 "../base:rtc_base_approved", | 67 "../base:rtc_base_approved", |
69 "../modules/audio_device:mock_audio_device", | 68 "../modules/audio_device:mock_audio_device", |
70 "../modules/audio_mixer", | 69 "../modules/audio_mixer", |
71 "../test:test_common", | 70 "../test:test_common", |
72 "//testing/gmock", | 71 "//testing/gmock", |
73 "//testing/gtest", | 72 "//testing/gtest", |
74 ] | 73 ] |
(...skipping 13 matching lines...) Expand all Loading... |
88 deps = [ | 87 deps = [ |
89 "//testing/gtest", | 88 "//testing/gtest", |
90 "//webrtc/test:test_common", | 89 "//webrtc/test:test_common", |
91 ] | 90 ] |
92 if (!build_with_chromium && is_clang) { | 91 if (!build_with_chromium && is_clang) { |
93 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 92 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
94 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 93 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
95 } | 94 } |
96 } | 95 } |
97 } | 96 } |
OLD | NEW |