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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 # gets additional generated targets which would require many lines here to | 82 # gets additional generated targets which would require many lines here to |
83 # cover (which would be confusing to read and hard to maintain). | 83 # cover (which would be confusing to read and hard to maintain). |
84 if (!is_android && !is_ios) { | 84 if (!is_android && !is_ios) { |
85 visibility = [ "//webrtc:video_engine_tests" ] | 85 visibility = [ "//webrtc:video_engine_tests" ] |
86 } | 86 } |
87 sources = [ | 87 sources = [ |
88 "bitrate_allocator_unittest.cc", | 88 "bitrate_allocator_unittest.cc", |
89 "bitrate_estimator_tests.cc", | 89 "bitrate_estimator_tests.cc", |
90 "call_unittest.cc", | 90 "call_unittest.cc", |
91 "flexfec_receive_stream_unittest.cc", | 91 "flexfec_receive_stream_unittest.cc", |
| 92 "rtp_demuxer_unittest.cc", |
92 "rtx_receive_stream_unittest.cc", | 93 "rtx_receive_stream_unittest.cc", |
93 ] | 94 ] |
94 deps = [ | 95 deps = [ |
95 ":call", | 96 ":call", |
96 "../api:mock_audio_mixer", | 97 "../api:mock_audio_mixer", |
97 "../base:rtc_base_approved", | 98 "../base:rtc_base_approved", |
98 "../logging:rtc_event_log_api", | 99 "../logging:rtc_event_log_api", |
99 "../modules/audio_device:mock_audio_device", | 100 "../modules/audio_device:mock_audio_device", |
100 "../modules/audio_mixer", | 101 "../modules/audio_mixer", |
101 "../modules/bitrate_controller", | 102 "../modules/bitrate_controller", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 "//testing/gtest", | 153 "//testing/gtest", |
153 "//webrtc/test:field_trial", | 154 "//webrtc/test:field_trial", |
154 "//webrtc/test:test_common", | 155 "//webrtc/test:test_common", |
155 ] | 156 ] |
156 if (!build_with_chromium && is_clang) { | 157 if (!build_with_chromium && is_clang) { |
157 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 158 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
158 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 159 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
159 } | 160 } |
160 } | 161 } |
161 } | 162 } |
OLD | NEW |