Peter Boström | 5c389d3 | 2015-09-25 13:58:30 +0200 | [diff] [blame] | 1 | # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 2 | # |
| 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 |
| 5 | # tree. An additional intellectual property rights grant can be found |
| 6 | # in the file PATENTS. All contributing project authors may |
| 7 | # be found in the AUTHORS file in the root of the source tree. |
| 8 | |
mbonadei | 9aa3f0a | 2017-01-24 06:58:22 -0800 | [diff] [blame] | 9 | import("../webrtc.gni") |
kjellander | 8f8d1a0 | 2017-03-06 04:01:16 -0800 | [diff] [blame] | 10 | if (is_android) { |
| 11 | import("//build/config/android/config.gni") |
| 12 | import("//build/config/android/rules.gni") |
| 13 | } |
Peter Boström | 5c389d3 | 2015-09-25 13:58:30 +0200 | [diff] [blame] | 14 | |
kjellander | b62dbbe | 2016-09-23 00:38:52 -0700 | [diff] [blame] | 15 | rtc_static_library("audio") { |
Peter Boström | 5c389d3 | 2015-09-25 13:58:30 +0200 | [diff] [blame] | 16 | sources = [ |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 17 | "audio_level.cc", |
| 18 | "audio_level.h", |
Peter Boström | 5c389d3 | 2015-09-25 13:58:30 +0200 | [diff] [blame] | 19 | "audio_receive_stream.cc", |
| 20 | "audio_receive_stream.h", |
solenberg | c7a8b08 | 2015-10-16 14:35:07 -0700 | [diff] [blame] | 21 | "audio_send_stream.cc", |
| 22 | "audio_send_stream.h", |
solenberg | 566ef24 | 2015-11-06 15:34:49 -0800 | [diff] [blame] | 23 | "audio_state.cc", |
| 24 | "audio_state.h", |
Fredrik Solenberg | 2a87797 | 2017-12-15 16:42:15 +0100 | [diff] [blame] | 25 | "audio_transport_impl.cc", |
| 26 | "audio_transport_impl.h", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 27 | "channel.cc", |
| 28 | "channel.h", |
| 29 | "channel_proxy.cc", |
| 30 | "channel_proxy.h", |
Fredrik Solenberg | 4f4ec0a | 2015-10-22 10:49:27 +0200 | [diff] [blame] | 31 | "conversion.h", |
henrika | 5f6bf24 | 2017-11-01 11:06:56 +0100 | [diff] [blame] | 32 | "null_audio_poller.cc", |
| 33 | "null_audio_poller.h", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 34 | "remix_resample.cc", |
| 35 | "remix_resample.h", |
saza | c58f8c0 | 2017-07-19 00:39:19 -0700 | [diff] [blame] | 36 | "time_interval.cc", |
| 37 | "time_interval.h", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 38 | "transport_feedback_packet_loss_tracker.cc", |
| 39 | "transport_feedback_packet_loss_tracker.h", |
Peter Boström | 5c389d3 | 2015-09-25 13:58:30 +0200 | [diff] [blame] | 40 | ] |
| 41 | |
kjellander | e40a7ee | 2016-10-16 23:56:12 -0700 | [diff] [blame] | 42 | if (!build_with_chromium && is_clang) { |
| 43 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 44 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
Peter Boström | 5c389d3 | 2015-09-25 13:58:30 +0200 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | deps = [ |
| 48 | "..:webrtc_common", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 49 | "../api:array_view", |
kjellander | 676e08f | 2016-12-07 08:23:27 -0800 | [diff] [blame] | 50 | "../api:call_api", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 51 | "../api:libjingle_peerconnection_api", |
kwiberg | 84f6a3f | 2017-09-05 08:43:13 -0700 | [diff] [blame] | 52 | "../api:optional", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 53 | "../api:transport_api", |
Gustaf Ullberg | f35c666 | 2018-02-23 13:18:29 +0100 | [diff] [blame] | 54 | "../api/audio:aec3_factory", |
Gustaf Ullberg | 2ae140a | 2018-02-16 13:43:49 +0100 | [diff] [blame] | 55 | "../api/audio:audio_mixer_api", |
ossu | eb1fde4 | 2017-05-02 06:46:30 -0700 | [diff] [blame] | 56 | "../api/audio_codecs:audio_codecs_api", |
| 57 | "../api/audio_codecs:builtin_audio_encoder_factory", |
Mirko Bonadei | 245660a | 2017-10-10 14:38:11 +0200 | [diff] [blame] | 58 | "../call:bitrate_allocator", |
ossu | f515ab8 | 2016-12-07 04:52:58 -0800 | [diff] [blame] | 59 | "../call:call_interfaces", |
nisse | d76b7b2 | 2017-06-01 04:02:35 -0700 | [diff] [blame] | 60 | "../call:rtp_interfaces", |
aleloi | 04c0722 | 2016-11-22 06:42:53 -0800 | [diff] [blame] | 61 | "../common_audio", |
Mirko Bonadei | dbbb33c | 2018-02-05 15:50:41 +0100 | [diff] [blame] | 62 | "../common_audio:common_audio_c", |
Qingsi Wang | 970b088 | 2018-02-01 11:04:46 -0800 | [diff] [blame] | 63 | "../logging:rtc_event_audio", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 64 | "../logging:rtc_event_log_api", |
| 65 | "../modules:module_api", |
| 66 | "../modules/audio_coding", |
| 67 | "../modules/audio_coding:audio_format_conversion", |
| 68 | "../modules/audio_coding:audio_network_adaptor_config", |
ossu | 20a4b3f | 2017-04-27 02:08:52 -0700 | [diff] [blame] | 69 | "../modules/audio_coding:cng", |
aleloi | dd31071 | 2016-11-17 06:28:59 -0800 | [diff] [blame] | 70 | "../modules/audio_device", |
| 71 | "../modules/audio_processing", |
stefan | 7de8d64 | 2017-02-07 07:14:08 -0800 | [diff] [blame] | 72 | "../modules/bitrate_controller:bitrate_controller", |
kjellander | 676e08f | 2016-12-07 08:23:27 -0800 | [diff] [blame] | 73 | "../modules/pacing:pacing", |
| 74 | "../modules/remote_bitrate_estimator:remote_bitrate_estimator", |
Mirko Bonadei | b5728d9 | 2017-12-06 07:51:33 +0100 | [diff] [blame] | 75 | "../modules/rtp_rtcp", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 76 | "../modules/rtp_rtcp:rtp_rtcp_format", |
| 77 | "../modules/utility", |
Patrik Höglund | a8005cf | 2017-12-13 16:05:42 +0100 | [diff] [blame] | 78 | "../rtc_base:checks", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 79 | "../rtc_base:rate_limiter", |
henrika | 5f6bf24 | 2017-11-01 11:06:56 +0100 | [diff] [blame] | 80 | "../rtc_base:rtc_base", |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 81 | "../rtc_base:rtc_base_approved", |
| 82 | "../rtc_base:rtc_task_queue", |
Karl Wiberg | 12edf4c | 2018-03-07 14:18:56 +0100 | [diff] [blame] | 83 | "../rtc_base:safe_minmax", |
Tommi | fef0500 | 2018-02-27 13:51:08 +0100 | [diff] [blame] | 84 | "../rtc_base:stringutils", |
Peter Boström | 5c389d3 | 2015-09-25 13:58:30 +0200 | [diff] [blame] | 85 | "../system_wrappers", |
Alex Narest | cedd351 | 2017-12-07 20:54:55 +0100 | [diff] [blame] | 86 | "../system_wrappers:field_trial_api", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 87 | "../system_wrappers:metrics_api", |
Fredrik Solenberg | 2a87797 | 2017-12-15 16:42:15 +0100 | [diff] [blame] | 88 | "utility:audio_frame_operations", |
Peter Boström | 5c389d3 | 2015-09-25 13:58:30 +0200 | [diff] [blame] | 89 | ] |
| 90 | } |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 91 | if (rtc_include_tests) { |
Fredrik Solenberg | 73276ad | 2017-09-14 14:46:47 +0200 | [diff] [blame] | 92 | rtc_source_set("audio_end_to_end_test") { |
| 93 | testonly = true |
| 94 | |
| 95 | sources = [ |
| 96 | "test/audio_end_to_end_test.cc", |
| 97 | "test/audio_end_to_end_test.h", |
| 98 | ] |
| 99 | deps = [ |
| 100 | ":audio", |
| 101 | "../system_wrappers:system_wrappers", |
Fredrik Solenberg | 73276ad | 2017-09-14 14:46:47 +0200 | [diff] [blame] | 102 | "../test:test_common", |
| 103 | "../test:test_support", |
| 104 | ] |
| 105 | |
| 106 | if (!build_with_chromium && is_clang) { |
| 107 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 108 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 109 | } |
| 110 | } |
| 111 | |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 112 | rtc_source_set("audio_tests") { |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 113 | testonly = true |
kjellander | 676e08f | 2016-12-07 08:23:27 -0800 | [diff] [blame] | 114 | |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 115 | sources = [ |
| 116 | "audio_receive_stream_unittest.cc", |
solenberg | 18f5427 | 2017-09-15 09:56:08 -0700 | [diff] [blame] | 117 | "audio_send_stream_tests.cc", |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 118 | "audio_send_stream_unittest.cc", |
| 119 | "audio_state_unittest.cc", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 120 | "mock_voe_channel_proxy.h", |
| 121 | "remix_resample_unittest.cc", |
saza | c58f8c0 | 2017-07-19 00:39:19 -0700 | [diff] [blame] | 122 | "time_interval_unittest.cc", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 123 | "transport_feedback_packet_loss_tracker_unittest.cc", |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 124 | ] |
| 125 | deps = [ |
| 126 | ":audio", |
Fredrik Solenberg | 73276ad | 2017-09-14 14:46:47 +0200 | [diff] [blame] | 127 | ":audio_end_to_end_test", |
aleloi | 04c0722 | 2016-11-22 06:42:53 -0800 | [diff] [blame] | 128 | "../api:mock_audio_mixer", |
Fredrik Solenberg | 2a87797 | 2017-12-15 16:42:15 +0100 | [diff] [blame] | 129 | "../call:mock_call_interfaces", |
Sebastian Jansson | ef9daee | 2018-02-22 14:49:02 +0100 | [diff] [blame] | 130 | "../call:mock_rtp_interfaces", |
Patrik Höglund | c0e6804 | 2017-11-13 17:04:05 +0100 | [diff] [blame] | 131 | "../call:rtp_interfaces", |
nisse | 0f15f92 | 2017-06-21 01:05:22 -0700 | [diff] [blame] | 132 | "../call:rtp_receiver", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 133 | "../common_audio", |
Patrik Höglund | 731082c | 2018-01-03 09:08:20 +0100 | [diff] [blame] | 134 | "../logging:mocks", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 135 | "../modules:module_api", |
aleloi | dd31071 | 2016-11-17 06:28:59 -0800 | [diff] [blame] | 136 | "../modules/audio_device:mock_audio_device", |
aleloi | 04c0722 | 2016-11-22 06:42:53 -0800 | [diff] [blame] | 137 | "../modules/audio_mixer:audio_mixer_impl", |
Ivo Creusen | 56d4609 | 2017-11-24 17:29:59 +0100 | [diff] [blame] | 138 | "../modules/audio_processing:audio_processing_statistics", |
Patrik Höglund | 6213929 | 2017-12-19 16:44:45 +0100 | [diff] [blame] | 139 | "../modules/audio_processing:mocks", |
Patrik Höglund | 94dc177 | 2018-01-02 14:20:17 +0100 | [diff] [blame] | 140 | "../modules/bitrate_controller:mocks", |
kjellander | 676e08f | 2016-12-07 08:23:27 -0800 | [diff] [blame] | 141 | "../modules/pacing:pacing", |
Patrik Höglund | c0e6804 | 2017-11-13 17:04:05 +0100 | [diff] [blame] | 142 | "../modules/rtp_rtcp:mock_rtp_rtcp", |
| 143 | "../modules/rtp_rtcp:rtp_rtcp_format", |
Fredrik Solenberg | a8b7c7f | 2018-01-17 11:18:31 +0100 | [diff] [blame] | 144 | "../rtc_base:checks", |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 145 | "../rtc_base:rtc_base_approved", |
Patrik Höglund | c0e6804 | 2017-11-13 17:04:05 +0100 | [diff] [blame] | 146 | "../rtc_base:rtc_base_tests_utils", |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 147 | "../rtc_base:rtc_task_queue", |
Patrik Höglund | a8005cf | 2017-12-13 16:05:42 +0100 | [diff] [blame] | 148 | "../rtc_base:safe_compare", |
Patrik Höglund | c0e6804 | 2017-11-13 17:04:05 +0100 | [diff] [blame] | 149 | "../system_wrappers:system_wrappers", |
| 150 | "../test:audio_codec_mocks", |
| 151 | "../test:rtp_test_utils", |
aleloi | 10111bc | 2016-11-17 06:48:48 -0800 | [diff] [blame] | 152 | "../test:test_common", |
aleloi | 6321b49 | 2016-12-05 01:46:09 -0800 | [diff] [blame] | 153 | "../test:test_support", |
ehmaldonado | 894c2bb | 2017-01-05 06:03:24 -0800 | [diff] [blame] | 154 | "utility:utility_tests", |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 155 | "//testing/gtest", |
| 156 | ] |
oprypin | 5e1ca78 | 2017-03-20 02:06:18 -0700 | [diff] [blame] | 157 | |
Fredrik Solenberg | 73276ad | 2017-09-14 14:46:47 +0200 | [diff] [blame] | 158 | if (!rtc_use_memcheck) { |
| 159 | # This test is timing dependent, which rules out running on memcheck bots. |
| 160 | sources += [ "test/audio_stats_test.cc" ] |
| 161 | } |
| 162 | |
kjellander | e40a7ee | 2016-10-16 23:56:12 -0700 | [diff] [blame] | 163 | if (!build_with_chromium && is_clang) { |
| 164 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 165 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 166 | } |
| 167 | } |
kjellander | 8f8d1a0 | 2017-03-06 04:01:16 -0800 | [diff] [blame] | 168 | |
| 169 | if (rtc_enable_protobuf) { |
oprypin | 6d305ba | 2017-03-30 04:01:30 -0700 | [diff] [blame] | 170 | rtc_test("low_bandwidth_audio_test") { |
kjellander | 8f8d1a0 | 2017-03-06 04:01:16 -0800 | [diff] [blame] | 171 | testonly = true |
| 172 | |
| 173 | sources = [ |
| 174 | "test/low_bandwidth_audio_test.cc", |
| 175 | ] |
| 176 | |
oprypin | 92220ff | 2017-03-23 03:40:03 -0700 | [diff] [blame] | 177 | deps = [ |
Fredrik Solenberg | 73276ad | 2017-09-14 14:46:47 +0200 | [diff] [blame] | 178 | ":audio_end_to_end_test", |
oprypin | 92220ff | 2017-03-23 03:40:03 -0700 | [diff] [blame] | 179 | "../common_audio", |
oprypin | 9b2f20c | 2017-08-29 05:51:57 -0700 | [diff] [blame] | 180 | "../rtc_base:rtc_base_approved", |
oprypin | 92220ff | 2017-03-23 03:40:03 -0700 | [diff] [blame] | 181 | "../system_wrappers", |
Patrik Höglund | 7696bef | 2018-03-15 15:05:39 +0100 | [diff] [blame] | 182 | "../test:fileutils", |
oprypin | 92220ff | 2017-03-23 03:40:03 -0700 | [diff] [blame] | 183 | "../test:test_common", |
| 184 | "../test:test_main", |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 185 | "//testing/gtest", |
oprypin | 92220ff | 2017-03-23 03:40:03 -0700 | [diff] [blame] | 186 | ] |
kjellander | 8f8d1a0 | 2017-03-06 04:01:16 -0800 | [diff] [blame] | 187 | if (is_android) { |
oprypin | 92220ff | 2017-03-23 03:40:03 -0700 | [diff] [blame] | 188 | deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 189 | } |
| 190 | |
| 191 | data = [ |
Oleh Prypin | 8cf0a87 | 2018-03-18 22:31:06 +0100 | [diff] [blame] | 192 | "../resources/voice_engine/audio_tiny16.wav", |
Oleh Prypin | 9c1ee36 | 2018-03-19 15:58:08 +0100 | [diff] [blame] | 193 | "../resources/voice_engine/audio_tiny48.wav", |
Oleh Prypin | 8cf0a87 | 2018-03-18 22:31:06 +0100 | [diff] [blame] | 194 | ] |
| 195 | |
| 196 | if (!build_with_chromium && is_clang) { |
| 197 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) |
| 198 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | group("low_bandwidth_audio_perf_test") { |
| 203 | testonly = true |
| 204 | |
| 205 | deps = [ |
| 206 | ":low_bandwidth_audio_test", |
| 207 | ] |
| 208 | |
| 209 | data = [ |
| 210 | "test/low_bandwidth_audio_test.py", |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 211 | "../resources/voice_engine/audio_tiny16.wav", |
| 212 | "../resources/voice_engine/audio_tiny48.wav", |
oprypin | 92220ff | 2017-03-23 03:40:03 -0700 | [diff] [blame] | 213 | ] |
Oleh Prypin | 7b2676f | 2018-03-19 11:33:03 +0100 | [diff] [blame] | 214 | if (is_win) { |
| 215 | data += [ "${root_out_dir}/low_bandwidth_audio_test.exe" ] |
| 216 | } else { |
| 217 | data += [ "${root_out_dir}/low_bandwidth_audio_test" ] |
| 218 | } |
| 219 | |
Edward Lemur | 98d4036 | 2018-01-15 17:37:04 +0100 | [diff] [blame] | 220 | if (is_linux || is_android) { |
Edward Lemur | 2011075 | 2017-09-28 16:14:37 +0200 | [diff] [blame] | 221 | data += [ |
| 222 | "../tools_webrtc/audio_quality/linux/PolqaOem64", |
| 223 | "../tools_webrtc/audio_quality/linux/pesq", |
| 224 | ] |
| 225 | } |
| 226 | if (is_win) { |
| 227 | data += [ |
| 228 | "../tools_webrtc/audio_quality/win/PolqaOem64.dll", |
| 229 | "../tools_webrtc/audio_quality/win/PolqaOem64.exe", |
| 230 | "../tools_webrtc/audio_quality/win/pesq.exe", |
| 231 | "../tools_webrtc/audio_quality/win/vcomp120.dll", |
| 232 | ] |
| 233 | } |
| 234 | if (is_mac) { |
| 235 | data += [ "../tools_webrtc/audio_quality/mac/pesq" ] |
| 236 | } |
Oleh Prypin | 650a826 | 2018-03-15 13:52:41 +0000 | [diff] [blame] | 237 | |
Oleh Prypin | 8cf0a87 | 2018-03-18 22:31:06 +0100 | [diff] [blame] | 238 | write_runtime_deps = "${root_out_dir}/${target_name}.runtime_deps" |
kjellander | 8f8d1a0 | 2017-03-06 04:01:16 -0800 | [diff] [blame] | 239 | } |
| 240 | } |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 241 | |
| 242 | rtc_source_set("audio_perf_tests") { |
| 243 | testonly = true |
| 244 | |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 245 | sources = [ |
| 246 | "test/audio_bwe_integration_test.cc", |
| 247 | "test/audio_bwe_integration_test.h", |
| 248 | ] |
| 249 | deps = [ |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 250 | "../common_audio", |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 251 | "../rtc_base:rtc_base_approved", |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 252 | "../system_wrappers", |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 253 | "../test:field_trial", |
Patrik Höglund | 7696bef | 2018-03-15 15:05:39 +0100 | [diff] [blame] | 254 | "../test:fileutils", |
eladalon | 413ee9a | 2017-08-22 04:02:52 -0700 | [diff] [blame] | 255 | "../test:single_threaded_task_queue", |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 256 | "../test:test_common", |
| 257 | "../test:test_main", |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 258 | "//testing/gtest", |
tschumim | 9d11764 | 2017-07-17 01:41:41 -0700 | [diff] [blame] | 259 | ] |
| 260 | |
| 261 | data = [ |
| 262 | "//resources/voice_engine/audio_dtx16.wav", |
| 263 | ] |
| 264 | |
| 265 | if (!build_with_chromium && is_clang) { |
| 266 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 267 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 268 | } |
| 269 | } |
Peter Boström | 0208322 | 2016-06-14 12:52:54 +0200 | [diff] [blame] | 270 | } |