kjellander@webrtc.org | 1227ab8 | 2014-06-23 19:21:07 +0000 | [diff] [blame] | 1 | # Copyright (c) 2014 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@webrtc.org | 1227ab8 | 2014-06-23 19:21:07 +0000 | [diff] [blame] | 10 | |
kwiberg | 9774447 | 2017-01-10 01:12:51 -0800 | [diff] [blame] | 11 | rtc_static_library("audio_coder") { |
| 12 | sources = [ |
| 13 | "coder.cc", |
| 14 | "coder.h", |
| 15 | ] |
| 16 | deps = [ |
| 17 | "..:webrtc_common", |
| 18 | "../modules/audio_coding", |
| 19 | "../modules/audio_coding:audio_format_conversion", |
| 20 | "../modules/audio_coding:builtin_audio_decoder_factory", |
| 21 | "../modules/audio_coding:rent_a_codec", |
| 22 | ] |
| 23 | |
| 24 | if (!build_with_chromium && is_clang) { |
| 25 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 26 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | rtc_static_library("file_player") { |
| 31 | sources = [ |
| 32 | "file_player.cc", |
| 33 | "file_player.h", |
| 34 | ] |
| 35 | deps = [ |
| 36 | ":audio_coder", |
| 37 | "..:webrtc_common", |
| 38 | "../common_audio", |
| 39 | "../modules/media_file", |
| 40 | "../system_wrappers", |
| 41 | ] |
| 42 | |
| 43 | if (!build_with_chromium && is_clang) { |
| 44 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 45 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | rtc_static_library("file_recorder") { |
| 50 | sources = [ |
| 51 | "file_recorder.cc", |
| 52 | "file_recorder.h", |
| 53 | ] |
| 54 | deps = [ |
| 55 | ":audio_coder", |
| 56 | "..:webrtc_common", |
| 57 | "../base:rtc_base_approved", |
| 58 | "../common_audio", |
| 59 | "../modules/media_file:media_file", |
| 60 | "../system_wrappers", |
| 61 | ] |
| 62 | |
| 63 | if (!build_with_chromium && is_clang) { |
| 64 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 65 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 66 | } |
| 67 | } |
| 68 | |
kjellander | b62dbbe | 2016-09-23 00:38:52 -0700 | [diff] [blame] | 69 | rtc_static_library("voice_engine") { |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 70 | sources = [ |
Henrik Kjellander | 57e5fd2 | 2015-05-25 12:55:39 +0200 | [diff] [blame] | 71 | "channel.cc", |
| 72 | "channel.h", |
| 73 | "channel_manager.cc", |
| 74 | "channel_manager.h", |
solenberg | 1372508 | 2015-11-25 08:16:52 -0800 | [diff] [blame] | 75 | "channel_proxy.cc", |
| 76 | "channel_proxy.h", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 77 | "include/voe_audio_processing.h", |
| 78 | "include/voe_base.h", |
| 79 | "include/voe_codec.h", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 80 | "include/voe_errors.h", |
| 81 | "include/voe_external_media.h", |
| 82 | "include/voe_file.h", |
| 83 | "include/voe_hardware.h", |
| 84 | "include/voe_neteq_stats.h", |
| 85 | "include/voe_network.h", |
| 86 | "include/voe_rtp_rtcp.h", |
| 87 | "include/voe_video_sync.h", |
| 88 | "include/voe_volume_control.h", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 89 | "monitor_module.cc", |
| 90 | "monitor_module.h", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 91 | "output_mixer.cc", |
| 92 | "output_mixer.h", |
| 93 | "shared_data.cc", |
| 94 | "shared_data.h", |
| 95 | "statistics.cc", |
| 96 | "statistics.h", |
| 97 | "transmit_mixer.cc", |
| 98 | "transmit_mixer.h", |
minyue | 435ddf9 | 2017-01-23 08:07:05 -0800 | [diff] [blame] | 99 | "transport_feedback_packet_loss_tracker.cc", |
| 100 | "transport_feedback_packet_loss_tracker.h", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 101 | "utility.cc", |
| 102 | "utility.h", |
| 103 | "voe_audio_processing_impl.cc", |
| 104 | "voe_audio_processing_impl.h", |
| 105 | "voe_base_impl.cc", |
| 106 | "voe_base_impl.h", |
| 107 | "voe_codec_impl.cc", |
| 108 | "voe_codec_impl.h", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 109 | "voe_external_media_impl.cc", |
| 110 | "voe_external_media_impl.h", |
| 111 | "voe_file_impl.cc", |
| 112 | "voe_file_impl.h", |
| 113 | "voe_hardware_impl.cc", |
| 114 | "voe_hardware_impl.h", |
| 115 | "voe_neteq_stats_impl.cc", |
| 116 | "voe_neteq_stats_impl.h", |
| 117 | "voe_network_impl.cc", |
| 118 | "voe_network_impl.h", |
| 119 | "voe_rtp_rtcp_impl.cc", |
| 120 | "voe_rtp_rtcp_impl.h", |
| 121 | "voe_video_sync_impl.cc", |
| 122 | "voe_video_sync_impl.h", |
| 123 | "voe_volume_control_impl.cc", |
| 124 | "voe_volume_control_impl.h", |
| 125 | "voice_engine_defines.h", |
| 126 | "voice_engine_impl.cc", |
| 127 | "voice_engine_impl.h", |
| 128 | ] |
| 129 | |
| 130 | if (is_win) { |
| 131 | defines = [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ] |
kjellander@webrtc.org | 8649fed | 2015-01-08 21:22:01 +0000 | [diff] [blame] | 132 | |
| 133 | cflags = [ |
| 134 | # TODO(kjellander): Bug 261: fix this warning. |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 135 | "/wd4373", # Virtual function override. |
kjellander@webrtc.org | 8649fed | 2015-01-08 21:22:01 +0000 | [diff] [blame] | 136 | ] |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 137 | } |
| 138 | |
kjellander | e40a7ee | 2016-10-16 23:56:12 -0700 | [diff] [blame] | 139 | if (!build_with_chromium && is_clang) { |
| 140 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 141 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 142 | } |
| 143 | |
ehmaldonado | 53cec04 | 2016-09-09 05:32:14 -0700 | [diff] [blame] | 144 | public_deps = [ |
| 145 | "../modules/audio_coding", |
| 146 | ] |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 147 | deps = [ |
kwiberg | 9774447 | 2017-01-10 01:12:51 -0800 | [diff] [blame] | 148 | ":file_player", |
| 149 | ":file_recorder", |
aleloi | e6ca9ec | 2016-08-10 05:01:51 -0700 | [diff] [blame] | 150 | ":level_indicator", |
kwiberg@webrtc.org | ac2d27d | 2015-02-26 13:59:22 +0000 | [diff] [blame] | 151 | "..:webrtc_common", |
aleloi | aed581a | 2016-10-20 06:32:39 -0700 | [diff] [blame] | 152 | "../api:audio_mixer_api", |
kjellander | a69d973 | 2016-08-31 07:33:05 -0700 | [diff] [blame] | 153 | "../api:call_api", |
aleloi | a8eb756 | 2016-11-28 07:02:13 -0800 | [diff] [blame] | 154 | "../api:transport_api", |
aleloi | 6321b49 | 2016-12-05 01:46:09 -0800 | [diff] [blame] | 155 | "../audio/utility:audio_frame_operations", |
kjellander@webrtc.org | 7ffeab5 | 2016-02-26 22:46:09 +0100 | [diff] [blame] | 156 | "../base:rtc_base_approved", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 157 | "../common_audio", |
skvlad | cc91d28 | 2016-10-03 18:31:22 -0700 | [diff] [blame] | 158 | "../logging:rtc_event_log_api", |
aleloi | 9ae585d | 2016-10-13 06:57:16 -0700 | [diff] [blame] | 159 | "../modules/audio_coding:audio_decoder_factory_interface", |
kwiberg | da2bf4e | 2016-10-24 13:47:09 -0700 | [diff] [blame] | 160 | "../modules/audio_coding:audio_format_conversion", |
aleloi | 9ae585d | 2016-10-13 06:57:16 -0700 | [diff] [blame] | 161 | "../modules/audio_coding:builtin_audio_decoder_factory", |
| 162 | "../modules/audio_coding:rent_a_codec", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 163 | "../modules/audio_conference_mixer", |
| 164 | "../modules/audio_device", |
| 165 | "../modules/audio_processing", |
| 166 | "../modules/bitrate_controller", |
| 167 | "../modules/media_file", |
Stefan Holmer | b86d4e4 | 2015-12-07 10:26:18 +0100 | [diff] [blame] | 168 | "../modules/pacing", |
kjellander@webrtc.org | 524b8f7 | 2014-08-31 20:32:53 +0000 | [diff] [blame] | 169 | "../modules/rtp_rtcp", |
| 170 | "../modules/utility", |
| 171 | "../system_wrappers", |
| 172 | ] |
kjellander@webrtc.org | 1227ab8 | 2014-06-23 19:21:07 +0000 | [diff] [blame] | 173 | } |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 174 | |
kjellander | b62dbbe | 2016-09-23 00:38:52 -0700 | [diff] [blame] | 175 | rtc_static_library("level_indicator") { |
aleloi | e6ca9ec | 2016-08-10 05:01:51 -0700 | [diff] [blame] | 176 | sources = [ |
| 177 | "level_indicator.cc", |
| 178 | "level_indicator.h", |
| 179 | ] |
| 180 | |
aleloi | e6ca9ec | 2016-08-10 05:01:51 -0700 | [diff] [blame] | 181 | deps = [ |
| 182 | "..:webrtc_common", |
| 183 | "../base:rtc_base_approved", |
| 184 | "../common_audio", |
| 185 | ] |
| 186 | } |
| 187 | |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 188 | if (rtc_include_tests) { |
solenberg | ba56b6c | 2016-09-13 07:29:12 -0700 | [diff] [blame] | 189 | config("channel_transport_warnings_config") { |
| 190 | if (is_win) { |
| 191 | cflags = [ "/wd4302" ] # cast truncation |
| 192 | |
| 193 | if (is_clang) { |
| 194 | # GN orders flags on a target before flags from configs. The default |
| 195 | # config adds -Wall, and this flag have to be after -Wall -- so they need |
| 196 | # to come from a config and cannot be on the target directly. |
| 197 | cflags += [ |
| 198 | "-Wno-parentheses-equality", |
| 199 | "-Wno-reorder", |
| 200 | "-Wno-tautological-constant-out-of-range-compare", |
| 201 | |
| 202 | # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6268 |
| 203 | # for -Wno-thread-safety-analysis |
| 204 | "-Wno-thread-safety-analysis", |
| 205 | "-Wno-unused-private-field", |
| 206 | ] |
| 207 | } |
| 208 | } |
| 209 | } |
| 210 | |
kjellander | b62dbbe | 2016-09-23 00:38:52 -0700 | [diff] [blame] | 211 | rtc_static_library("channel_transport") { |
solenberg | ba56b6c | 2016-09-13 07:29:12 -0700 | [diff] [blame] | 212 | testonly = true |
| 213 | sources = [ |
| 214 | "test/channel_transport/channel_transport.cc", |
| 215 | "test/channel_transport/channel_transport.h", |
| 216 | "test/channel_transport/traffic_control_win.cc", |
| 217 | "test/channel_transport/traffic_control_win.h", |
| 218 | "test/channel_transport/udp_socket2_manager_win.cc", |
| 219 | "test/channel_transport/udp_socket2_manager_win.h", |
| 220 | "test/channel_transport/udp_socket2_win.cc", |
| 221 | "test/channel_transport/udp_socket2_win.h", |
| 222 | "test/channel_transport/udp_socket_manager_posix.cc", |
| 223 | "test/channel_transport/udp_socket_manager_posix.h", |
| 224 | "test/channel_transport/udp_socket_manager_wrapper.cc", |
| 225 | "test/channel_transport/udp_socket_manager_wrapper.h", |
| 226 | "test/channel_transport/udp_socket_posix.cc", |
| 227 | "test/channel_transport/udp_socket_posix.h", |
| 228 | "test/channel_transport/udp_socket_wrapper.cc", |
| 229 | "test/channel_transport/udp_socket_wrapper.h", |
| 230 | "test/channel_transport/udp_transport.h", |
| 231 | "test/channel_transport/udp_transport_impl.cc", |
| 232 | "test/channel_transport/udp_transport_impl.h", |
| 233 | ] |
| 234 | |
| 235 | configs += [ ":channel_transport_warnings_config" ] |
| 236 | |
kjellander | e40a7ee | 2016-10-16 23:56:12 -0700 | [diff] [blame] | 237 | if (!build_with_chromium && is_clang) { |
| 238 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
solenberg | ba56b6c | 2016-09-13 07:29:12 -0700 | [diff] [blame] | 239 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 240 | } |
| 241 | |
| 242 | deps = [ |
| 243 | "..:webrtc_common", |
aleloi | a8eb756 | 2016-11-28 07:02:13 -0800 | [diff] [blame] | 244 | "../api:transport_api", |
solenberg | ba56b6c | 2016-09-13 07:29:12 -0700 | [diff] [blame] | 245 | "../system_wrappers", |
| 246 | "//testing/gtest", |
| 247 | ] |
| 248 | } |
| 249 | |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 250 | rtc_test("voice_engine_unittests") { |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 251 | deps = [ |
solenberg | ba56b6c | 2016-09-13 07:29:12 -0700 | [diff] [blame] | 252 | ":channel_transport", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 253 | ":voice_engine", |
| 254 | "//testing/gmock", |
| 255 | "//testing/gtest", |
kwiberg | 9774447 | 2017-01-10 01:12:51 -0800 | [diff] [blame] | 256 | "//third_party/gflags", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 257 | "//webrtc/common_audio", |
| 258 | "//webrtc/modules/audio_coding", |
| 259 | "//webrtc/modules/audio_conference_mixer", |
| 260 | "//webrtc/modules/audio_device", |
| 261 | "//webrtc/modules/audio_processing", |
| 262 | "//webrtc/modules/media_file", |
| 263 | "//webrtc/modules/rtp_rtcp", |
solenberg | 71b9b58 | 2016-11-25 11:45:05 -0800 | [diff] [blame] | 264 | "//webrtc/modules/utility", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 265 | "//webrtc/system_wrappers", |
ehmaldonado | 26bddb9 | 2016-11-30 06:12:01 -0800 | [diff] [blame] | 266 | "//webrtc/test:test_main", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 267 | ] |
| 268 | |
| 269 | if (is_android) { |
| 270 | deps += [ "//testing/android/native_test:native_test_native_code" ] |
sakal | 714dd4e | 2016-08-15 02:29:11 -0700 | [diff] [blame] | 271 | shard_timeout = 900 |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | sources = [ |
| 275 | "channel_unittest.cc", |
kwiberg | 9774447 | 2017-01-10 01:12:51 -0800 | [diff] [blame] | 276 | "file_player_unittests.cc", |
solenberg | ba56b6c | 2016-09-13 07:29:12 -0700 | [diff] [blame] | 277 | "test/channel_transport/udp_socket_manager_unittest.cc", |
| 278 | "test/channel_transport/udp_socket_wrapper_unittest.cc", |
| 279 | "test/channel_transport/udp_transport_unittest.cc", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 280 | "transmit_mixer_unittest.cc", |
minyue | 435ddf9 | 2017-01-23 08:07:05 -0800 | [diff] [blame] | 281 | "transport_feedback_packet_loss_tracker_unittest.cc", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 282 | "utility_unittest.cc", |
| 283 | "voe_audio_processing_unittest.cc", |
| 284 | "voe_base_unittest.cc", |
| 285 | "voe_codec_unittest.cc", |
| 286 | "voe_network_unittest.cc", |
| 287 | "voice_engine_fixture.cc", |
| 288 | "voice_engine_fixture.h", |
| 289 | ] |
| 290 | |
kwiberg | 9774447 | 2017-01-10 01:12:51 -0800 | [diff] [blame] | 291 | data = [ |
| 292 | "//resources/utility/encapsulated_pcm16b_8khz.wav", |
| 293 | "//resources/utility/encapsulated_pcmu_8khz.wav", |
| 294 | ] |
| 295 | |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 296 | if (is_win) { |
| 297 | defines = [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ] |
| 298 | |
| 299 | cflags = [ |
| 300 | # TODO(kjellander): Bug 261: fix this warning. |
| 301 | "/wd4373", # Virtual function override. |
| 302 | ] |
| 303 | } |
| 304 | |
kjellander | e40a7ee | 2016-10-16 23:56:12 -0700 | [diff] [blame] | 305 | if (!build_with_chromium && is_clang) { |
| 306 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 307 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | |
solenberg | fb2c1d0 | 2016-09-15 13:12:02 -0700 | [diff] [blame] | 311 | rtc_executable("voe_cmd_test") { |
| 312 | testonly = true |
| 313 | |
| 314 | deps = [ |
| 315 | ":channel_transport", |
| 316 | ":voice_engine", |
| 317 | "//testing/gtest", |
| 318 | "//third_party/gflags", |
skvlad | cc91d28 | 2016-10-03 18:31:22 -0700 | [diff] [blame] | 319 | "//webrtc/logging:rtc_event_log_api", |
solenberg | fb2c1d0 | 2016-09-15 13:12:02 -0700 | [diff] [blame] | 320 | "//webrtc/system_wrappers", |
| 321 | "//webrtc/system_wrappers:system_wrappers_default", |
| 322 | "//webrtc/test:test_support", |
| 323 | ] |
| 324 | |
| 325 | sources = [ |
| 326 | "test/cmd_test/voe_cmd_test.cc", |
| 327 | ] |
| 328 | |
kjellander | e40a7ee | 2016-10-16 23:56:12 -0700 | [diff] [blame] | 329 | if (!build_with_chromium && is_clang) { |
| 330 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
solenberg | fb2c1d0 | 2016-09-15 13:12:02 -0700 | [diff] [blame] | 331 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 332 | } |
| 333 | } |
| 334 | |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 335 | if (!is_ios) { |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 336 | rtc_executable("voe_auto_test") { |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 337 | testonly = true |
| 338 | |
| 339 | deps = [ |
solenberg | ba56b6c | 2016-09-13 07:29:12 -0700 | [diff] [blame] | 340 | ":channel_transport", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 341 | ":voice_engine", |
| 342 | "//testing/gmock", |
| 343 | "//testing/gtest", |
| 344 | "//third_party/gflags", |
skvlad | cc91d28 | 2016-10-03 18:31:22 -0700 | [diff] [blame] | 345 | "//webrtc/logging:rtc_event_log_api", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 346 | "//webrtc/modules/video_capture", |
| 347 | "//webrtc/system_wrappers", |
| 348 | "//webrtc/system_wrappers/:system_wrappers_default", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 349 | "//webrtc/test/:test_common", |
| 350 | "//webrtc/test/:test_support", |
ehmaldonado | 656610f | 2017-02-06 02:21:11 -0800 | [diff] [blame] | 351 | "//webrtc/test/:video_test_common", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 352 | ] |
| 353 | |
| 354 | sources = [ |
| 355 | "test/auto_test/automated_mode.cc", |
| 356 | "test/auto_test/extended/agc_config_test.cc", |
| 357 | "test/auto_test/extended/ec_metrics_test.cc", |
| 358 | "test/auto_test/fakes/conference_transport.cc", |
| 359 | "test/auto_test/fakes/conference_transport.h", |
| 360 | "test/auto_test/fakes/loudest_filter.cc", |
| 361 | "test/auto_test/fakes/loudest_filter.h", |
| 362 | "test/auto_test/fixtures/after_initialization_fixture.cc", |
| 363 | "test/auto_test/fixtures/after_initialization_fixture.h", |
| 364 | "test/auto_test/fixtures/after_streaming_fixture.cc", |
| 365 | "test/auto_test/fixtures/after_streaming_fixture.h", |
| 366 | "test/auto_test/fixtures/before_initialization_fixture.cc", |
| 367 | "test/auto_test/fixtures/before_initialization_fixture.h", |
| 368 | "test/auto_test/fixtures/before_streaming_fixture.cc", |
| 369 | "test/auto_test/fixtures/before_streaming_fixture.h", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 370 | "test/auto_test/standard/audio_processing_test.cc", |
| 371 | "test/auto_test/standard/codec_before_streaming_test.cc", |
| 372 | "test/auto_test/standard/codec_test.cc", |
| 373 | "test/auto_test/standard/dtmf_test.cc", |
| 374 | "test/auto_test/standard/external_media_test.cc", |
| 375 | "test/auto_test/standard/file_before_streaming_test.cc", |
| 376 | "test/auto_test/standard/file_test.cc", |
| 377 | "test/auto_test/standard/hardware_before_initializing_test.cc", |
| 378 | "test/auto_test/standard/hardware_test.cc", |
| 379 | "test/auto_test/standard/mixing_test.cc", |
| 380 | "test/auto_test/standard/neteq_stats_test.cc", |
| 381 | "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc", |
| 382 | "test/auto_test/standard/rtp_rtcp_extensions.cc", |
| 383 | "test/auto_test/standard/rtp_rtcp_test.cc", |
| 384 | "test/auto_test/standard/video_sync_test.cc", |
| 385 | "test/auto_test/standard/voe_base_misc_test.cc", |
| 386 | "test/auto_test/standard/volume_test.cc", |
| 387 | "test/auto_test/voe_conference_test.cc", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 388 | "test/auto_test/voe_standard_test.cc", |
| 389 | "test/auto_test/voe_standard_test.h", |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 390 | "test/auto_test/voe_test_defines.h", |
| 391 | "test/auto_test/voe_test_interface.h", |
| 392 | ] |
| 393 | |
| 394 | if (!is_android) { |
| 395 | # Some tests are not supported on android yet, exclude these tests. |
| 396 | sources += |
| 397 | [ "test/auto_test/standard/hardware_before_streaming_test.cc" ] |
| 398 | } |
| 399 | |
| 400 | defines = [] |
| 401 | |
| 402 | if (rtc_enable_protobuf) { |
| 403 | defines = [ "ENABLE_RTC_EVENT_LOG" ] |
| 404 | } |
| 405 | |
| 406 | if (is_win) { |
| 407 | defines += [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ] |
| 408 | |
| 409 | cflags = [ |
| 410 | "/wd4267", # size_t to int truncation. |
| 411 | "/wd4373", # Virtual function override. |
| 412 | # TODO(kjellander): Bug 261: fix this warning. |
| 413 | ] |
| 414 | } |
| 415 | |
kjellander | e40a7ee | 2016-10-16 23:56:12 -0700 | [diff] [blame] | 416 | if (!build_with_chromium && is_clang) { |
| 417 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 418 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
ossu | a16f7a8 | 2016-07-08 02:12:55 -0700 | [diff] [blame] | 419 | } |
| 420 | } |
| 421 | } |
| 422 | } |