Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 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 { | 9 { |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 102 'video_coding/codecs/vp8/test/vp8_impl_unittest.cc', | 102 'video_coding/codecs/vp8/test/vp8_impl_unittest.cc', |
| 103 ], | 103 ], |
| 104 'conditions': [ | 104 'conditions': [ |
| 105 ['OS=="android"', { | 105 ['OS=="android"', { |
| 106 'dependencies': [ | 106 'dependencies': [ |
| 107 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod e', | 107 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod e', |
| 108 ], | 108 ], |
| 109 }], | 109 }], |
| 110 ], | 110 ], |
| 111 }, | 111 }, |
| 112 ], | 112 { |
| 113 'conditions': [ | 113 'target_name': 'modules_unittests', |
|
kjellander_webrtc
2016/02/15 21:05:04
The diff is useless here: what I've done is:
1. mo
| |
| 114 # Does not compile on iOS for ia32 or x64: webrtc:4755. | 114 'type': '<(gtest_target_type)', |
| 115 ['OS!="ios" or target_arch=="arm" or target_arch=="arm64"', { | 115 'defines': [ |
| 116 'targets': [ | 116 '<@(audio_coding_defines)', |
| 117 { | 117 ], |
| 118 'target_name': 'modules_unittests', | 118 'dependencies': [ |
| 119 'type': '<(gtest_target_type)', | 119 'acm_receive_test', |
| 120 'defines': [ | 120 'acm_send_test', |
| 121 '<@(audio_coding_defines)', | 121 'audio_coding_module', |
| 122 'audio_conference_mixer', | |
| 123 'audio_device' , | |
| 124 'audio_processing', | |
| 125 'audioproc_test_utils', | |
| 126 'bitrate_controller', | |
| 127 'bwe_simulator', | |
| 128 'cng', | |
| 129 'isac_fix', | |
| 130 'media_file', | |
| 131 'neteq', | |
| 132 'neteq_test_support', | |
| 133 'neteq_unittest_tools', | |
| 134 'paced_sender', | |
| 135 'pcm16b', # Needed by NetEq tests. | |
| 136 'red', | |
| 137 'remote_bitrate_estimator', | |
| 138 'rtp_rtcp', | |
| 139 'video_codecs_test_framework', | |
| 140 'video_processing', | |
| 141 'webrtc_utility', | |
| 142 'webrtc_video_coding', | |
| 143 '<@(neteq_dependencies)', | |
| 144 '<(DEPTH)/testing/gmock.gyp:gmock', | |
| 145 '<(DEPTH)/testing/gtest.gyp:gtest', | |
| 146 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
| 147 '<(webrtc_root)/common.gyp:webrtc_common', | |
| 148 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | |
| 149 '<(webrtc_root)/common_video/common_video.gyp:common_video', | |
| 150 '<(webrtc_root)/modules/modules.gyp:video_capture', | |
| 151 '<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8', | |
| 152 '<(webrtc_root)/modules/video_coding/codecs/vp9/vp9.gyp:webrtc_vp9', | |
| 153 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , | |
| 154 '<(webrtc_root)/test/test.gyp:fake_video_frames', | |
| 155 '<(webrtc_root)/test/test.gyp:rtp_test_utils', | |
| 156 '<(webrtc_root)/test/test.gyp:test_support_main', | |
| 157 '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common', | |
| 158 '<(webrtc_root)/tools/tools.gyp:agc_test_utils', | |
| 159 ], | |
| 160 'sources': [ | |
| 161 'audio_coding/codecs/cng/audio_encoder_cng_unittest.cc', | |
| 162 'audio_coding/acm2/acm_receiver_unittest_oldapi.cc', | |
| 163 'audio_coding/acm2/audio_coding_module_unittest_oldapi.cc', | |
| 164 'audio_coding/acm2/call_statistics_unittest.cc', | |
| 165 'audio_coding/acm2/codec_manager_unittest.cc', | |
| 166 'audio_coding/acm2/initial_delay_manager_unittest.cc', | |
| 167 'audio_coding/acm2/rent_a_codec_unittest.cc', | |
| 168 'audio_coding/codecs/cng/cng_unittest.cc', | |
| 169 'audio_coding/codecs/isac/main/source/audio_encoder_isac_unittest.cc ', | |
| 170 'audio_coding/codecs/isac/main/source/isac_unittest.cc', | |
| 171 'audio_coding/codecs/opus/audio_encoder_opus_unittest.cc', | |
| 172 'audio_coding/codecs/opus/opus_unittest.cc', | |
| 173 'audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc', | |
| 174 'audio_coding/neteq/audio_classifier_unittest.cc', | |
| 175 'audio_coding/neteq/audio_multi_vector_unittest.cc', | |
| 176 'audio_coding/neteq/audio_vector_unittest.cc', | |
| 177 'audio_coding/neteq/background_noise_unittest.cc', | |
| 178 'audio_coding/neteq/buffer_level_filter_unittest.cc', | |
| 179 'audio_coding/neteq/comfort_noise_unittest.cc', | |
| 180 'audio_coding/neteq/decision_logic_unittest.cc', | |
| 181 'audio_coding/neteq/decoder_database_unittest.cc', | |
| 182 'audio_coding/neteq/delay_manager_unittest.cc', | |
| 183 'audio_coding/neteq/delay_peak_detector_unittest.cc', | |
| 184 'audio_coding/neteq/dsp_helper_unittest.cc', | |
| 185 'audio_coding/neteq/dtmf_buffer_unittest.cc', | |
| 186 'audio_coding/neteq/dtmf_tone_generator_unittest.cc', | |
| 187 'audio_coding/neteq/expand_unittest.cc', | |
| 188 'audio_coding/neteq/merge_unittest.cc', | |
| 189 'audio_coding/neteq/nack_unittest.cc', | |
| 190 'audio_coding/neteq/neteq_external_decoder_unittest.cc', | |
| 191 'audio_coding/neteq/neteq_impl_unittest.cc', | |
| 192 'audio_coding/neteq/neteq_network_stats_unittest.cc', | |
| 193 'audio_coding/neteq/neteq_stereo_unittest.cc', | |
| 194 'audio_coding/neteq/neteq_unittest.cc', | |
| 195 'audio_coding/neteq/normal_unittest.cc', | |
| 196 'audio_coding/neteq/packet_buffer_unittest.cc', | |
| 197 'audio_coding/neteq/payload_splitter_unittest.cc', | |
| 198 'audio_coding/neteq/post_decode_vad_unittest.cc', | |
| 199 'audio_coding/neteq/random_vector_unittest.cc', | |
| 200 'audio_coding/neteq/sync_buffer_unittest.cc', | |
| 201 'audio_coding/neteq/timestamp_scaler_unittest.cc', | |
| 202 'audio_coding/neteq/time_stretch_unittest.cc', | |
| 203 'audio_coding/neteq/mock/mock_audio_decoder.h', | |
| 204 'audio_coding/neteq/mock/mock_audio_vector.h', | |
| 205 'audio_coding/neteq/mock/mock_buffer_level_filter.h', | |
| 206 'audio_coding/neteq/mock/mock_decoder_database.h', | |
| 207 'audio_coding/neteq/mock/mock_delay_manager.h', | |
| 208 'audio_coding/neteq/mock/mock_delay_peak_detector.h', | |
| 209 'audio_coding/neteq/mock/mock_dtmf_buffer.h', | |
| 210 'audio_coding/neteq/mock/mock_dtmf_tone_generator.h', | |
| 211 'audio_coding/neteq/mock/mock_expand.h', | |
| 212 'audio_coding/neteq/mock/mock_external_decoder_pcm16b.h', | |
| 213 'audio_coding/neteq/mock/mock_packet_buffer.h', | |
| 214 'audio_coding/neteq/mock/mock_payload_splitter.h', | |
| 215 'audio_coding/neteq/tools/input_audio_file_unittest.cc', | |
| 216 'audio_coding/neteq/tools/packet_unittest.cc', | |
| 217 'audio_conference_mixer/test/audio_conference_mixer_unittest.cc', | |
| 218 'audio_device/fine_audio_buffer_unittest.cc', | |
| 219 'audio_processing/aec/echo_cancellation_unittest.cc', | |
| 220 'audio_processing/aec/system_delay_unittest.cc', | |
| 221 'audio_processing/agc/agc_manager_direct_unittest.cc', | |
| 222 # TODO(ajm): Fix to match new interface. | |
| 223 # 'audio_processing/agc/agc_unittest.cc', | |
| 224 'audio_processing/agc/histogram_unittest.cc', | |
| 225 'audio_processing/agc/mock_agc.h', | |
| 226 'audio_processing/beamformer/array_util_unittest.cc', | |
| 227 'audio_processing/beamformer/complex_matrix_unittest.cc', | |
| 228 'audio_processing/beamformer/covariance_matrix_generator_unittest.cc ', | |
| 229 'audio_processing/beamformer/matrix_unittest.cc', | |
| 230 'audio_processing/beamformer/mock_nonlinear_beamformer.h', | |
| 231 'audio_processing/beamformer/nonlinear_beamformer_unittest.cc', | |
| 232 'audio_processing/echo_cancellation_impl_unittest.cc', | |
| 233 'audio_processing/intelligibility/intelligibility_enhancer_unittest. cc', | |
| 234 'audio_processing/intelligibility/intelligibility_utils_unittest.cc' , | |
| 235 'audio_processing/splitting_filter_unittest.cc', | |
| 236 'audio_processing/transient/dyadic_decimator_unittest.cc', | |
| 237 'audio_processing/transient/file_utils.cc', | |
| 238 'audio_processing/transient/file_utils.h', | |
| 239 'audio_processing/transient/file_utils_unittest.cc', | |
| 240 'audio_processing/transient/moving_moments_unittest.cc', | |
| 241 'audio_processing/transient/transient_detector_unittest.cc', | |
| 242 'audio_processing/transient/transient_suppressor_unittest.cc', | |
| 243 'audio_processing/transient/wpd_node_unittest.cc', | |
| 244 'audio_processing/transient/wpd_tree_unittest.cc', | |
| 245 'audio_processing/utility/delay_estimator_unittest.cc', | |
| 246 'audio_processing/vad/gmm_unittest.cc', | |
| 247 'audio_processing/vad/pitch_based_vad_unittest.cc', | |
| 248 'audio_processing/vad/pitch_internal_unittest.cc', | |
| 249 'audio_processing/vad/pole_zero_filter_unittest.cc', | |
| 250 'audio_processing/vad/standalone_vad_unittest.cc', | |
| 251 'audio_processing/vad/vad_audio_proc_unittest.cc', | |
| 252 'audio_processing/vad/vad_circular_buffer_unittest.cc', | |
| 253 'audio_processing/vad/voice_activity_detector_unittest.cc', | |
| 254 'bitrate_controller/bitrate_controller_unittest.cc', | |
| 255 'bitrate_controller/send_side_bandwidth_estimation_unittest.cc', | |
| 256 'media_file/media_file_unittest.cc', | |
| 257 'module_common_types_unittest.cc', | |
| 258 'pacing/bitrate_prober_unittest.cc', | |
| 259 'pacing/paced_sender_unittest.cc', | |
| 260 'pacing/packet_router_unittest.cc', | |
| 261 'remote_bitrate_estimator/bwe_simulations.cc', | |
| 262 'remote_bitrate_estimator/include/mock/mock_remote_bitrate_observer. h', | |
| 263 'remote_bitrate_estimator/include/mock/mock_remote_bitrate_estimator .h', | |
| 264 'remote_bitrate_estimator/inter_arrival_unittest.cc', | |
| 265 'remote_bitrate_estimator/overuse_detector_unittest.cc', | |
| 266 'remote_bitrate_estimator/rate_statistics_unittest.cc', | |
| 267 'remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time_uni ttest.cc', | |
| 268 'remote_bitrate_estimator/remote_bitrate_estimator_single_stream_uni ttest.cc', | |
| 269 'remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.c c', | |
| 270 'remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h ', | |
| 271 'remote_bitrate_estimator/remote_estimator_proxy_unittest.cc', | |
| 272 'remote_bitrate_estimator/send_time_history_unittest.cc', | |
| 273 'remote_bitrate_estimator/test/bwe_test_framework_unittest.cc', | |
| 274 'remote_bitrate_estimator/test/bwe_unittest.cc', | |
| 275 'remote_bitrate_estimator/test/metric_recorder_unittest.cc', | |
| 276 'remote_bitrate_estimator/test/estimators/nada_unittest.cc', | |
| 277 'remote_bitrate_estimator/transport_feedback_adapter_unittest.cc', | |
| 278 'rtp_rtcp/source/mock/mock_rtp_payload_strategy.h', | |
| 279 'rtp_rtcp/source/byte_io_unittest.cc', | |
| 280 'rtp_rtcp/source/fec_receiver_unittest.cc', | |
| 281 'rtp_rtcp/source/fec_test_helper.cc', | |
| 282 'rtp_rtcp/source/fec_test_helper.h', | |
| 283 'rtp_rtcp/source/h264_sps_parser_unittest.cc', | |
| 284 'rtp_rtcp/source/h264_bitstream_parser_unittest.cc', | |
| 285 'rtp_rtcp/source/nack_rtx_unittest.cc', | |
| 286 'rtp_rtcp/source/packet_loss_stats_unittest.cc', | |
| 287 'rtp_rtcp/source/producer_fec_unittest.cc', | |
| 288 'rtp_rtcp/source/receive_statistics_unittest.cc', | |
| 289 'rtp_rtcp/source/remote_ntp_time_estimator_unittest.cc', | |
| 290 'rtp_rtcp/source/rtcp_format_remb_unittest.cc', | |
| 291 'rtp_rtcp/source/rtcp_packet_unittest.cc', | |
| 292 'rtp_rtcp/source/rtcp_packet/app_unittest.cc', | |
| 293 'rtp_rtcp/source/rtcp_packet/bye_unittest.cc', | |
| 294 'rtp_rtcp/source/rtcp_packet/compound_packet_unittest.cc', | |
| 295 'rtp_rtcp/source/rtcp_packet/dlrr_unittest.cc', | |
| 296 'rtp_rtcp/source/rtcp_packet/extended_jitter_report_unittest.cc', | |
| 297 'rtp_rtcp/source/rtcp_packet/extended_reports_unittest.cc', | |
| 298 'rtp_rtcp/source/rtcp_packet/fir_unittest.cc', | |
| 299 'rtp_rtcp/source/rtcp_packet/nack_unittest.cc', | |
| 300 'rtp_rtcp/source/rtcp_packet/pli_unittest.cc', | |
| 301 'rtp_rtcp/source/rtcp_packet/rapid_resync_request_unittest.cc', | |
| 302 'rtp_rtcp/source/rtcp_packet/receiver_report_unittest.cc', | |
| 303 'rtp_rtcp/source/rtcp_packet/remb_unittest.cc', | |
| 304 'rtp_rtcp/source/rtcp_packet/report_block_unittest.cc', | |
| 305 'rtp_rtcp/source/rtcp_packet/rpsi_unittest.cc', | |
| 306 'rtp_rtcp/source/rtcp_packet/rrtr_unittest.cc', | |
| 307 'rtp_rtcp/source/rtcp_packet/sdes_unittest.cc', | |
| 308 'rtp_rtcp/source/rtcp_packet/sender_report_unittest.cc', | |
| 309 'rtp_rtcp/source/rtcp_packet/sli_unittest.cc', | |
| 310 'rtp_rtcp/source/rtcp_packet/tmmbn_unittest.cc', | |
| 311 'rtp_rtcp/source/rtcp_packet/tmmbr_unittest.cc', | |
| 312 'rtp_rtcp/source/rtcp_packet/transport_feedback_unittest.cc', | |
| 313 'rtp_rtcp/source/rtcp_packet/voip_metric_unittest.cc', | |
| 314 'rtp_rtcp/source/rtcp_receiver_unittest.cc', | |
| 315 'rtp_rtcp/source/rtcp_sender_unittest.cc', | |
| 316 'rtp_rtcp/source/rtcp_utility_unittest.cc', | |
| 317 'rtp_rtcp/source/rtp_fec_unittest.cc', | |
| 318 'rtp_rtcp/source/rtp_format_h264_unittest.cc', | |
| 319 'rtp_rtcp/source/rtp_format_vp8_test_helper.cc', | |
| 320 'rtp_rtcp/source/rtp_format_vp8_test_helper.h', | |
| 321 'rtp_rtcp/source/rtp_format_vp8_unittest.cc', | |
| 322 'rtp_rtcp/source/rtp_format_vp9_unittest.cc', | |
| 323 'rtp_rtcp/source/rtp_packet_history_unittest.cc', | |
| 324 'rtp_rtcp/source/rtp_payload_registry_unittest.cc', | |
| 325 'rtp_rtcp/source/rtp_rtcp_impl_unittest.cc', | |
| 326 'rtp_rtcp/source/rtp_header_extension_unittest.cc', | |
| 327 'rtp_rtcp/source/rtp_sender_unittest.cc', | |
| 328 'rtp_rtcp/source/time_util_unittest.cc', | |
| 329 'rtp_rtcp/source/vp8_partition_aggregator_unittest.cc', | |
| 330 'rtp_rtcp/test/testAPI/test_api.cc', | |
| 331 'rtp_rtcp/test/testAPI/test_api.h', | |
| 332 'rtp_rtcp/test/testAPI/test_api_audio.cc', | |
| 333 'rtp_rtcp/test/testAPI/test_api_rtcp.cc', | |
| 334 'rtp_rtcp/test/testAPI/test_api_video.cc', | |
| 335 'utility/source/audio_frame_operations_unittest.cc', | |
| 336 'utility/source/file_player_unittests.cc', | |
| 337 'utility/source/process_thread_impl_unittest.cc', | |
| 338 'video_coding/codecs/test/packet_manipulator_unittest.cc', | |
| 339 'video_coding/codecs/test/stats_unittest.cc', | |
| 340 'video_coding/codecs/test/videoprocessor_unittest.cc', | |
| 341 'video_coding/codecs/vp8/default_temporal_layers_unittest.cc', | |
| 342 'video_coding/codecs/vp8/reference_picture_selection_unittest.cc', | |
| 343 'video_coding/codecs/vp8/screenshare_layers_unittest.cc', | |
| 344 'video_coding/codecs/vp8/simulcast_encoder_adapter_unittest.cc', | |
| 345 'video_coding/codecs/vp8/simulcast_unittest.cc', | |
| 346 'video_coding/codecs/vp8/simulcast_unittest.h', | |
| 347 'video_coding/codecs/vp9/screenshare_layers_unittest.cc', | |
| 348 'video_coding/include/mock/mock_vcm_callbacks.h', | |
| 349 'video_coding/decoding_state_unittest.cc', | |
| 350 'video_coding/jitter_buffer_unittest.cc', | |
| 351 'video_coding/jitter_estimator_tests.cc', | |
| 352 'video_coding/media_optimization_unittest.cc', | |
| 353 'video_coding/receiver_unittest.cc', | |
| 354 'video_coding/session_info_unittest.cc', | |
| 355 'video_coding/timing_unittest.cc', | |
| 356 'video_coding/video_coding_robustness_unittest.cc', | |
| 357 'video_coding/video_receiver_unittest.cc', | |
| 358 'video_coding/video_sender_unittest.cc', | |
| 359 'video_coding/qm_select_unittest.cc', | |
| 360 'video_coding/test/stream_generator.cc', | |
| 361 'video_coding/test/stream_generator.h', | |
| 362 'video_coding/utility/quality_scaler_unittest.cc', | |
| 363 'video_processing/test/brightness_detection_test.cc', | |
| 364 'video_processing/test/content_metrics_test.cc', | |
| 365 'video_processing/test/deflickering_test.cc', | |
| 366 'video_processing/test/denoiser_test.cc', | |
| 367 'video_processing/test/video_processing_unittest.cc', | |
| 368 'video_processing/test/video_processing_unittest.h', | |
| 369 ], | |
| 370 'conditions': [ | |
| 371 ['enable_bwe_test_logging==1', { | |
| 372 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], | |
| 373 }, { | |
| 374 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], | |
| 375 'sources!': [ | |
| 376 'remote_bitrate_estimator/test/bwe_test_logging.cc' | |
| 122 ], | 377 ], |
| 378 }], | |
| 379 # Run screen/window capturer tests only on platforms where they are | |
| 380 # supported. | |
| 381 ['desktop_capture_supported==1', { | |
| 123 'dependencies': [ | 382 'dependencies': [ |
|
kjellander_webrtc
2016/02/15 21:05:04
I moved the desktop_capture dependency + test sour
Sergey Ulanov
2016/02/16 18:52:13
DesktopRegion is used by the remoting client on An
kjellander_webrtc
2016/02/16 19:37:37
Alright, I restored them in the next patch set.
| |
| 124 'acm_receive_test', | |
| 125 'acm_send_test', | |
| 126 'audio_coding_module', | |
| 127 'audio_conference_mixer', | |
| 128 'audio_device' , | |
| 129 'audio_processing', | |
| 130 'audioproc_test_utils', | |
| 131 'bitrate_controller', | |
| 132 'bwe_simulator', | |
| 133 'cng', | |
| 134 'desktop_capture', | 383 'desktop_capture', |
| 135 'isac_fix', | |
| 136 'media_file', | |
| 137 'neteq', | |
| 138 'neteq_test_support', | |
| 139 'neteq_unittest_tools', | |
| 140 'paced_sender', | |
| 141 'pcm16b', # Needed by NetEq tests. | |
| 142 'red', | |
| 143 'remote_bitrate_estimator', | |
| 144 'rtp_rtcp', | |
| 145 'video_codecs_test_framework', | |
| 146 'video_processing', | |
| 147 'webrtc_utility', | |
| 148 'webrtc_video_coding', | |
| 149 '<@(neteq_dependencies)', | |
| 150 '<(DEPTH)/testing/gmock.gyp:gmock', | |
| 151 '<(DEPTH)/testing/gtest.gyp:gtest', | |
| 152 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
| 153 '<(webrtc_root)/common.gyp:webrtc_common', | |
| 154 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | |
| 155 '<(webrtc_root)/common_video/common_video.gyp:common_video', | |
| 156 '<(webrtc_root)/modules/modules.gyp:video_capture', | |
| 157 '<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_v p8', | |
| 158 '<(webrtc_root)/modules/video_coding/codecs/vp9/vp9.gyp:webrtc_v p9', | |
| 159 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrapp ers', | |
| 160 '<(webrtc_root)/test/test.gyp:fake_video_frames', | |
| 161 '<(webrtc_root)/test/test.gyp:rtp_test_utils', | |
| 162 '<(webrtc_root)/test/test.gyp:test_support_main', | |
| 163 '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common', | |
| 164 '<(webrtc_root)/tools/tools.gyp:agc_test_utils', | |
| 165 ], | 384 ], |
| 166 'sources': [ | 385 'sources': [ |
| 167 'audio_coding/codecs/cng/audio_encoder_cng_unittest.cc', | |
| 168 'audio_coding/acm2/acm_receiver_unittest_oldapi.cc', | |
| 169 'audio_coding/acm2/audio_coding_module_unittest_oldapi.cc', | |
| 170 'audio_coding/acm2/call_statistics_unittest.cc', | |
| 171 'audio_coding/acm2/codec_manager_unittest.cc', | |
| 172 'audio_coding/acm2/initial_delay_manager_unittest.cc', | |
| 173 'audio_coding/acm2/rent_a_codec_unittest.cc', | |
| 174 'audio_coding/codecs/cng/cng_unittest.cc', | |
| 175 'audio_coding/codecs/isac/fix/source/filters_unittest.cc', | |
| 176 'audio_coding/codecs/isac/fix/source/filterbanks_unittest.cc', | |
| 177 'audio_coding/codecs/isac/fix/source/lpc_masking_model_unittest. cc', | |
| 178 'audio_coding/codecs/isac/fix/source/transform_unittest.cc', | |
| 179 'audio_coding/codecs/isac/main/source/audio_encoder_isac_unittes t.cc', | |
| 180 'audio_coding/codecs/isac/main/source/isac_unittest.cc', | |
| 181 'audio_coding/codecs/isac/unittest.cc', | |
| 182 'audio_coding/codecs/opus/audio_encoder_opus_unittest.cc', | |
| 183 'audio_coding/codecs/opus/opus_unittest.cc', | |
| 184 'audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc', | |
| 185 'audio_coding/neteq/audio_classifier_unittest.cc', | |
| 186 'audio_coding/neteq/audio_multi_vector_unittest.cc', | |
| 187 'audio_coding/neteq/audio_vector_unittest.cc', | |
| 188 'audio_coding/neteq/background_noise_unittest.cc', | |
| 189 'audio_coding/neteq/buffer_level_filter_unittest.cc', | |
| 190 'audio_coding/neteq/comfort_noise_unittest.cc', | |
| 191 'audio_coding/neteq/decision_logic_unittest.cc', | |
| 192 'audio_coding/neteq/decoder_database_unittest.cc', | |
| 193 'audio_coding/neteq/delay_manager_unittest.cc', | |
| 194 'audio_coding/neteq/delay_peak_detector_unittest.cc', | |
| 195 'audio_coding/neteq/dsp_helper_unittest.cc', | |
| 196 'audio_coding/neteq/dtmf_buffer_unittest.cc', | |
| 197 'audio_coding/neteq/dtmf_tone_generator_unittest.cc', | |
| 198 'audio_coding/neteq/expand_unittest.cc', | |
| 199 'audio_coding/neteq/merge_unittest.cc', | |
| 200 'audio_coding/neteq/nack_unittest.cc', | |
| 201 'audio_coding/neteq/neteq_external_decoder_unittest.cc', | |
| 202 'audio_coding/neteq/neteq_impl_unittest.cc', | |
| 203 'audio_coding/neteq/neteq_network_stats_unittest.cc', | |
| 204 'audio_coding/neteq/neteq_stereo_unittest.cc', | |
| 205 'audio_coding/neteq/neteq_unittest.cc', | |
| 206 'audio_coding/neteq/normal_unittest.cc', | |
| 207 'audio_coding/neteq/packet_buffer_unittest.cc', | |
| 208 'audio_coding/neteq/payload_splitter_unittest.cc', | |
| 209 'audio_coding/neteq/post_decode_vad_unittest.cc', | |
| 210 'audio_coding/neteq/random_vector_unittest.cc', | |
| 211 'audio_coding/neteq/sync_buffer_unittest.cc', | |
| 212 'audio_coding/neteq/timestamp_scaler_unittest.cc', | |
| 213 'audio_coding/neteq/time_stretch_unittest.cc', | |
| 214 'audio_coding/neteq/mock/mock_audio_decoder.h', | |
| 215 'audio_coding/neteq/mock/mock_audio_vector.h', | |
| 216 'audio_coding/neteq/mock/mock_buffer_level_filter.h', | |
| 217 'audio_coding/neteq/mock/mock_decoder_database.h', | |
| 218 'audio_coding/neteq/mock/mock_delay_manager.h', | |
| 219 'audio_coding/neteq/mock/mock_delay_peak_detector.h', | |
| 220 'audio_coding/neteq/mock/mock_dtmf_buffer.h', | |
| 221 'audio_coding/neteq/mock/mock_dtmf_tone_generator.h', | |
| 222 'audio_coding/neteq/mock/mock_expand.h', | |
| 223 'audio_coding/neteq/mock/mock_external_decoder_pcm16b.h', | |
| 224 'audio_coding/neteq/mock/mock_packet_buffer.h', | |
| 225 'audio_coding/neteq/mock/mock_payload_splitter.h', | |
| 226 'audio_coding/neteq/tools/input_audio_file_unittest.cc', | |
| 227 'audio_coding/neteq/tools/packet_unittest.cc', | |
| 228 'audio_conference_mixer/test/audio_conference_mixer_unittest.cc' , | |
| 229 'audio_device/fine_audio_buffer_unittest.cc', | |
| 230 'audio_processing/aec/echo_cancellation_unittest.cc', | |
| 231 'audio_processing/aec/system_delay_unittest.cc', | |
| 232 'audio_processing/agc/agc_manager_direct_unittest.cc', | |
| 233 # TODO(ajm): Fix to match new interface. | |
| 234 # 'audio_processing/agc/agc_unittest.cc', | |
| 235 'audio_processing/agc/histogram_unittest.cc', | |
| 236 'audio_processing/agc/mock_agc.h', | |
| 237 'audio_processing/beamformer/array_util_unittest.cc', | |
| 238 'audio_processing/beamformer/complex_matrix_unittest.cc', | |
| 239 'audio_processing/beamformer/covariance_matrix_generator_unittes t.cc', | |
| 240 'audio_processing/beamformer/matrix_unittest.cc', | |
| 241 'audio_processing/beamformer/mock_nonlinear_beamformer.h', | |
| 242 'audio_processing/beamformer/nonlinear_beamformer_unittest.cc', | |
| 243 'audio_processing/echo_cancellation_impl_unittest.cc', | |
| 244 'audio_processing/intelligibility/intelligibility_enhancer_unitt est.cc', | |
| 245 'audio_processing/intelligibility/intelligibility_utils_unittest .cc', | |
| 246 'audio_processing/splitting_filter_unittest.cc', | |
| 247 'audio_processing/transient/dyadic_decimator_unittest.cc', | |
| 248 'audio_processing/transient/file_utils.cc', | |
| 249 'audio_processing/transient/file_utils.h', | |
| 250 'audio_processing/transient/file_utils_unittest.cc', | |
| 251 'audio_processing/transient/moving_moments_unittest.cc', | |
| 252 'audio_processing/transient/transient_detector_unittest.cc', | |
| 253 'audio_processing/transient/transient_suppressor_unittest.cc', | |
| 254 'audio_processing/transient/wpd_node_unittest.cc', | |
| 255 'audio_processing/transient/wpd_tree_unittest.cc', | |
| 256 'audio_processing/utility/delay_estimator_unittest.cc', | |
| 257 'audio_processing/vad/gmm_unittest.cc', | |
| 258 'audio_processing/vad/pitch_based_vad_unittest.cc', | |
| 259 'audio_processing/vad/pitch_internal_unittest.cc', | |
| 260 'audio_processing/vad/pole_zero_filter_unittest.cc', | |
| 261 'audio_processing/vad/standalone_vad_unittest.cc', | |
| 262 'audio_processing/vad/vad_audio_proc_unittest.cc', | |
| 263 'audio_processing/vad/vad_circular_buffer_unittest.cc', | |
| 264 'audio_processing/vad/voice_activity_detector_unittest.cc', | |
| 265 'bitrate_controller/bitrate_controller_unittest.cc', | |
| 266 'bitrate_controller/send_side_bandwidth_estimation_unittest.cc', | |
| 267 'desktop_capture/desktop_and_cursor_composer_unittest.cc', | 386 'desktop_capture/desktop_and_cursor_composer_unittest.cc', |
| 268 'desktop_capture/desktop_region_unittest.cc', | 387 'desktop_capture/desktop_region_unittest.cc', |
| 269 'desktop_capture/differ_block_unittest.cc', | 388 'desktop_capture/differ_block_unittest.cc', |
| 270 'desktop_capture/differ_unittest.cc', | 389 'desktop_capture/differ_unittest.cc', |
| 271 'desktop_capture/mouse_cursor_monitor_unittest.cc', | 390 'desktop_capture/mouse_cursor_monitor_unittest.cc', |
| 272 'desktop_capture/screen_capturer_helper_unittest.cc', | 391 'desktop_capture/screen_capturer_helper_unittest.cc', |
| 273 'desktop_capture/screen_capturer_mac_unittest.cc', | 392 'desktop_capture/screen_capturer_mac_unittest.cc', |
| 274 'desktop_capture/screen_capturer_mock_objects.h', | 393 'desktop_capture/screen_capturer_mock_objects.h', |
| 275 'desktop_capture/screen_capturer_unittest.cc', | 394 'desktop_capture/screen_capturer_unittest.cc', |
| 276 'desktop_capture/window_capturer_unittest.cc', | 395 'desktop_capture/window_capturer_unittest.cc', |
| 277 'desktop_capture/win/cursor_unittest.cc', | 396 'desktop_capture/win/cursor_unittest.cc', |
| 278 'desktop_capture/win/cursor_unittest_resources.h', | 397 'desktop_capture/win/cursor_unittest_resources.h', |
| 279 'desktop_capture/win/cursor_unittest_resources.rc', | 398 'desktop_capture/win/cursor_unittest_resources.rc', |
| 280 'media_file/media_file_unittest.cc', | |
| 281 'module_common_types_unittest.cc', | |
| 282 'pacing/bitrate_prober_unittest.cc', | |
| 283 'pacing/paced_sender_unittest.cc', | |
| 284 'pacing/packet_router_unittest.cc', | |
| 285 'remote_bitrate_estimator/bwe_simulations.cc', | |
| 286 'remote_bitrate_estimator/include/mock/mock_remote_bitrate_obser ver.h', | |
| 287 'remote_bitrate_estimator/include/mock/mock_remote_bitrate_estim ator.h', | |
| 288 'remote_bitrate_estimator/inter_arrival_unittest.cc', | |
| 289 'remote_bitrate_estimator/overuse_detector_unittest.cc', | |
| 290 'remote_bitrate_estimator/rate_statistics_unittest.cc', | |
| 291 'remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time _unittest.cc', | |
| 292 'remote_bitrate_estimator/remote_bitrate_estimator_single_stream _unittest.cc', | |
| 293 'remote_bitrate_estimator/remote_bitrate_estimator_unittest_help er.cc', | |
| 294 'remote_bitrate_estimator/remote_bitrate_estimator_unittest_help er.h', | |
| 295 'remote_bitrate_estimator/remote_estimator_proxy_unittest.cc', | |
| 296 'remote_bitrate_estimator/send_time_history_unittest.cc', | |
| 297 'remote_bitrate_estimator/test/bwe_test_framework_unittest.cc', | |
| 298 'remote_bitrate_estimator/test/bwe_unittest.cc', | |
| 299 'remote_bitrate_estimator/test/metric_recorder_unittest.cc', | |
| 300 'remote_bitrate_estimator/test/estimators/nada_unittest.cc', | |
| 301 'remote_bitrate_estimator/transport_feedback_adapter_unittest.cc ', | |
| 302 'rtp_rtcp/source/mock/mock_rtp_payload_strategy.h', | |
| 303 'rtp_rtcp/source/byte_io_unittest.cc', | |
| 304 'rtp_rtcp/source/fec_receiver_unittest.cc', | |
| 305 'rtp_rtcp/source/fec_test_helper.cc', | |
| 306 'rtp_rtcp/source/fec_test_helper.h', | |
| 307 'rtp_rtcp/source/h264_sps_parser_unittest.cc', | |
| 308 'rtp_rtcp/source/h264_bitstream_parser_unittest.cc', | |
| 309 'rtp_rtcp/source/nack_rtx_unittest.cc', | |
| 310 'rtp_rtcp/source/packet_loss_stats_unittest.cc', | |
| 311 'rtp_rtcp/source/producer_fec_unittest.cc', | |
| 312 'rtp_rtcp/source/receive_statistics_unittest.cc', | |
| 313 'rtp_rtcp/source/remote_ntp_time_estimator_unittest.cc', | |
| 314 'rtp_rtcp/source/rtcp_format_remb_unittest.cc', | |
| 315 'rtp_rtcp/source/rtcp_packet_unittest.cc', | |
| 316 'rtp_rtcp/source/rtcp_packet/app_unittest.cc', | |
| 317 'rtp_rtcp/source/rtcp_packet/bye_unittest.cc', | |
| 318 'rtp_rtcp/source/rtcp_packet/compound_packet_unittest.cc', | |
| 319 'rtp_rtcp/source/rtcp_packet/dlrr_unittest.cc', | |
| 320 'rtp_rtcp/source/rtcp_packet/extended_jitter_report_unittest.cc' , | |
| 321 'rtp_rtcp/source/rtcp_packet/extended_reports_unittest.cc', | |
| 322 'rtp_rtcp/source/rtcp_packet/fir_unittest.cc', | |
| 323 'rtp_rtcp/source/rtcp_packet/nack_unittest.cc', | |
| 324 'rtp_rtcp/source/rtcp_packet/pli_unittest.cc', | |
| 325 'rtp_rtcp/source/rtcp_packet/rapid_resync_request_unittest.cc', | |
| 326 'rtp_rtcp/source/rtcp_packet/receiver_report_unittest.cc', | |
| 327 'rtp_rtcp/source/rtcp_packet/remb_unittest.cc', | |
| 328 'rtp_rtcp/source/rtcp_packet/report_block_unittest.cc', | |
| 329 'rtp_rtcp/source/rtcp_packet/rpsi_unittest.cc', | |
| 330 'rtp_rtcp/source/rtcp_packet/rrtr_unittest.cc', | |
| 331 'rtp_rtcp/source/rtcp_packet/sdes_unittest.cc', | |
| 332 'rtp_rtcp/source/rtcp_packet/sender_report_unittest.cc', | |
| 333 'rtp_rtcp/source/rtcp_packet/sli_unittest.cc', | |
| 334 'rtp_rtcp/source/rtcp_packet/tmmbn_unittest.cc', | |
| 335 'rtp_rtcp/source/rtcp_packet/tmmbr_unittest.cc', | |
| 336 'rtp_rtcp/source/rtcp_packet/transport_feedback_unittest.cc', | |
| 337 'rtp_rtcp/source/rtcp_packet/voip_metric_unittest.cc', | |
| 338 'rtp_rtcp/source/rtcp_receiver_unittest.cc', | |
| 339 'rtp_rtcp/source/rtcp_sender_unittest.cc', | |
| 340 'rtp_rtcp/source/rtcp_utility_unittest.cc', | |
| 341 'rtp_rtcp/source/rtp_fec_unittest.cc', | |
| 342 'rtp_rtcp/source/rtp_format_h264_unittest.cc', | |
| 343 'rtp_rtcp/source/rtp_format_vp8_test_helper.cc', | |
| 344 'rtp_rtcp/source/rtp_format_vp8_test_helper.h', | |
| 345 'rtp_rtcp/source/rtp_format_vp8_unittest.cc', | |
| 346 'rtp_rtcp/source/rtp_format_vp9_unittest.cc', | |
| 347 'rtp_rtcp/source/rtp_packet_history_unittest.cc', | |
| 348 'rtp_rtcp/source/rtp_payload_registry_unittest.cc', | |
| 349 'rtp_rtcp/source/rtp_rtcp_impl_unittest.cc', | |
| 350 'rtp_rtcp/source/rtp_header_extension_unittest.cc', | |
| 351 'rtp_rtcp/source/rtp_sender_unittest.cc', | |
| 352 'rtp_rtcp/source/time_util_unittest.cc', | |
| 353 'rtp_rtcp/source/vp8_partition_aggregator_unittest.cc', | |
| 354 'rtp_rtcp/test/testAPI/test_api.cc', | |
| 355 'rtp_rtcp/test/testAPI/test_api.h', | |
| 356 'rtp_rtcp/test/testAPI/test_api_audio.cc', | |
| 357 'rtp_rtcp/test/testAPI/test_api_rtcp.cc', | |
| 358 'rtp_rtcp/test/testAPI/test_api_video.cc', | |
| 359 'utility/source/audio_frame_operations_unittest.cc', | |
| 360 'utility/source/file_player_unittests.cc', | |
| 361 'utility/source/process_thread_impl_unittest.cc', | |
| 362 'video_coding/codecs/test/packet_manipulator_unittest.cc', | |
| 363 'video_coding/codecs/test/stats_unittest.cc', | |
| 364 'video_coding/codecs/test/videoprocessor_unittest.cc', | |
| 365 'video_coding/codecs/vp8/default_temporal_layers_unittest.cc', | |
| 366 'video_coding/codecs/vp8/reference_picture_selection_unittest.cc ', | |
| 367 'video_coding/codecs/vp8/screenshare_layers_unittest.cc', | |
| 368 'video_coding/codecs/vp8/simulcast_encoder_adapter_unittest.cc', | |
| 369 'video_coding/codecs/vp8/simulcast_unittest.cc', | |
| 370 'video_coding/codecs/vp8/simulcast_unittest.h', | |
| 371 'video_coding/codecs/vp9/screenshare_layers_unittest.cc', | |
| 372 'video_coding/include/mock/mock_vcm_callbacks.h', | |
| 373 'video_coding/decoding_state_unittest.cc', | |
| 374 'video_coding/jitter_buffer_unittest.cc', | |
| 375 'video_coding/jitter_estimator_tests.cc', | |
| 376 'video_coding/media_optimization_unittest.cc', | |
| 377 'video_coding/receiver_unittest.cc', | |
| 378 'video_coding/session_info_unittest.cc', | |
| 379 'video_coding/timing_unittest.cc', | |
| 380 'video_coding/video_coding_robustness_unittest.cc', | |
| 381 'video_coding/video_receiver_unittest.cc', | |
| 382 'video_coding/video_sender_unittest.cc', | |
| 383 'video_coding/qm_select_unittest.cc', | |
| 384 'video_coding/test/stream_generator.cc', | |
| 385 'video_coding/test/stream_generator.h', | |
| 386 'video_coding/utility/quality_scaler_unittest.cc', | |
| 387 'video_processing/test/brightness_detection_test.cc', | |
| 388 'video_processing/test/content_metrics_test.cc', | |
| 389 'video_processing/test/deflickering_test.cc', | |
| 390 'video_processing/test/denoiser_test.cc', | |
| 391 'video_processing/test/video_processing_unittest.cc', | |
| 392 'video_processing/test/video_processing_unittest.h', | |
| 393 ], | 399 ], |
| 394 'conditions': [ | 400 }], |
| 395 ['enable_bwe_test_logging==1', { | 401 ['prefer_fixed_point==1', { |
| 396 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], | 402 'defines': [ 'WEBRTC_AUDIOPROC_FIXED_PROFILE' ], |
| 397 }, { | 403 }, { |
| 398 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], | 404 'defines': [ 'WEBRTC_AUDIOPROC_FLOAT_PROFILE' ], |
| 399 'sources!': [ | 405 }], |
| 400 'remote_bitrate_estimator/test/bwe_test_logging.cc' | 406 ['enable_protobuf==1', { |
| 401 ], | 407 'defines': [ |
| 402 }], | 408 'WEBRTC_AUDIOPROC_DEBUG_DUMP', |
| 403 # Run screen/window capturer tests only on platforms where they are | 409 'WEBRTC_NETEQ_UNITTEST_BITEXACT', |
| 404 # supported. | |
| 405 ['desktop_capture_supported==0', { | |
| 406 'sources!': [ | |
| 407 'desktop_capture/desktop_and_cursor_composer_unittest.cc', | |
| 408 'desktop_capture/mouse_cursor_monitor_unittest.cc', | |
| 409 'desktop_capture/screen_capturer_helper_unittest.cc', | |
| 410 'desktop_capture/screen_capturer_mac_unittest.cc', | |
| 411 'desktop_capture/screen_capturer_mock_objects.h', | |
| 412 'desktop_capture/screen_capturer_unittest.cc', | |
| 413 'desktop_capture/window_capturer_unittest.cc', | |
| 414 ], | |
| 415 }], | |
| 416 ['prefer_fixed_point==1', { | |
| 417 'defines': [ 'WEBRTC_AUDIOPROC_FIXED_PROFILE' ], | |
| 418 }, { | |
| 419 'defines': [ 'WEBRTC_AUDIOPROC_FLOAT_PROFILE' ], | |
| 420 }], | |
| 421 ['enable_protobuf==1', { | |
| 422 'defines': [ | |
| 423 'WEBRTC_AUDIOPROC_DEBUG_DUMP', | |
| 424 'WEBRTC_NETEQ_UNITTEST_BITEXACT', | |
| 425 ], | |
| 426 'dependencies': [ | |
| 427 'audioproc_protobuf_utils', | |
| 428 'audioproc_unittest_proto', | |
| 429 'neteq_unittest_proto', | |
| 430 ], | |
| 431 'sources': [ | |
| 432 'audio_processing/audio_processing_impl_locking_unittest.cc' , | |
| 433 'audio_processing/audio_processing_impl_unittest.cc', | |
| 434 'audio_processing/test/audio_processing_unittest.cc', | |
| 435 'audio_processing/test/debug_dump_test.cc', | |
| 436 'audio_processing/test/test_utils.h', | |
| 437 ], | |
| 438 }], | |
| 439 ['build_libvpx==1', { | |
| 440 'dependencies': [ | |
| 441 '<(libvpx_dir)/libvpx.gyp:libvpx_new', | |
| 442 ], | |
| 443 }], | |
| 444 ['OS=="android"', { | |
| 445 'dependencies': [ | |
| 446 '<(DEPTH)/testing/android/native_test.gyp:native_test_native _code', | |
| 447 ], | |
| 448 # Need to disable error due to the line in | |
| 449 # base/android/jni_android.h triggering it: | |
| 450 # const BASE_EXPORT jobject GetApplicationContext() | |
| 451 # error: type qualifiers ignored on function return type | |
| 452 'cflags': [ | |
| 453 '-Wno-ignored-qualifiers', | |
| 454 ], | |
| 455 'sources': [ | |
| 456 'audio_device/android/audio_device_unittest.cc', | |
| 457 'audio_device/android/audio_manager_unittest.cc', | |
| 458 'audio_device/android/ensure_initialized.cc', | |
| 459 'audio_device/android/ensure_initialized.h', | |
| 460 ], | |
| 461 }], | |
| 462 ['OS=="ios"', { | |
| 463 'sources': [ | |
| 464 'video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.c c', | |
| 465 'audio_device/ios/audio_device_unittest_ios.cc', | |
| 466 ], | |
| 467 'mac_bundle_resources': [ | |
| 468 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm', | |
| 469 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', | |
| 470 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm', | |
| 471 '<(DEPTH)/resources/audio_device/audio_short16.pcm', | |
| 472 '<(DEPTH)/resources/audio_device/audio_short44.pcm', | |
| 473 '<(DEPTH)/resources/audio_device/audio_short48.pcm', | |
| 474 '<(DEPTH)/resources/audio_processing/agc/agc_no_circular_buf fer.dat', | |
| 475 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_gain.dat' , | |
| 476 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_lag.dat', | |
| 477 '<(DEPTH)/resources/audio_processing/agc/agc_spectral_peak.d at', | |
| 478 '<(DEPTH)/resources/audio_processing/agc/agc_voicing_prob.da t', | |
| 479 '<(DEPTH)/resources/audio_processing/agc/agc_with_circular_b uffer.dat', | |
| 480 '<(DEPTH)/resources/short_mixed_mono_48.dat', | |
| 481 '<(DEPTH)/resources/short_mixed_mono_48.pcm', | |
| 482 '<(DEPTH)/resources/short_mixed_stereo_48.dat', | |
| 483 '<(DEPTH)/resources/short_mixed_stereo_48.pcm', | |
| 484 ], | |
| 485 }], | |
| 486 ], | 410 ], |
| 487 # Disable warnings to enable Win64 build, issue 1323. | 411 'dependencies': [ |
| 488 'msvs_disabled_warnings': [ | 412 'audioproc_protobuf_utils', |
| 489 4267, # size_t to int truncation. | 413 'audioproc_unittest_proto', |
| 414 'neteq_unittest_proto', | |
| 490 ], | 415 ], |
| 491 }, | 416 'sources': [ |
| 417 'audio_processing/audio_processing_impl_locking_unittest.cc', | |
| 418 'audio_processing/audio_processing_impl_unittest.cc', | |
| 419 'audio_processing/test/audio_processing_unittest.cc', | |
| 420 'audio_processing/test/debug_dump_test.cc', | |
| 421 'audio_processing/test/test_utils.h', | |
| 422 ], | |
| 423 }], | |
| 424 ['build_libvpx==1', { | |
| 425 'dependencies': [ | |
| 426 '<(libvpx_dir)/libvpx.gyp:libvpx_new', | |
| 427 ], | |
| 428 }], | |
| 429 ['OS=="android"', { | |
| 430 'dependencies': [ | |
| 431 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod e', | |
| 432 ], | |
| 433 # Need to disable error due to the line in | |
| 434 # base/android/jni_android.h triggering it: | |
| 435 # const BASE_EXPORT jobject GetApplicationContext() | |
| 436 # error: type qualifiers ignored on function return type | |
| 437 'cflags': [ | |
| 438 '-Wno-ignored-qualifiers', | |
| 439 ], | |
| 440 'sources': [ | |
| 441 'audio_device/android/audio_device_unittest.cc', | |
| 442 'audio_device/android/audio_manager_unittest.cc', | |
| 443 'audio_device/android/ensure_initialized.cc', | |
| 444 'audio_device/android/ensure_initialized.h', | |
| 445 ], | |
| 446 }], | |
| 447 ['OS=="ios"', { | |
| 448 'sources': [ | |
| 449 'video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc', | |
| 450 'audio_device/ios/audio_device_unittest_ios.cc', | |
| 451 ], | |
| 452 'mac_bundle_resources': [ | |
| 453 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm', | |
| 454 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', | |
| 455 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm', | |
| 456 '<(DEPTH)/resources/audio_device/audio_short16.pcm', | |
| 457 '<(DEPTH)/resources/audio_device/audio_short44.pcm', | |
| 458 '<(DEPTH)/resources/audio_device/audio_short48.pcm', | |
| 459 '<(DEPTH)/resources/audio_processing/agc/agc_no_circular_buffer. dat', | |
| 460 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_gain.dat', | |
| 461 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_lag.dat', | |
| 462 '<(DEPTH)/resources/audio_processing/agc/agc_spectral_peak.dat', | |
| 463 '<(DEPTH)/resources/audio_processing/agc/agc_voicing_prob.dat', | |
| 464 '<(DEPTH)/resources/audio_processing/agc/agc_with_circular_buffe r.dat', | |
| 465 '<(DEPTH)/resources/short_mixed_mono_48.dat', | |
| 466 '<(DEPTH)/resources/short_mixed_mono_48.pcm', | |
| 467 '<(DEPTH)/resources/short_mixed_stereo_48.dat', | |
| 468 '<(DEPTH)/resources/short_mixed_stereo_48.pcm', | |
| 469 ], | |
| 470 }], | |
| 471 # Doesn't compile on iOS for ia32,x64 or arm64: webrtc:4755. | |
| 472 ['OS!="ios" or target_arch=="arm"', { | |
| 473 'sources': [ | |
| 474 'audio_coding/codecs/isac/unittest.cc', | |
|
kjellander_webrtc
2016/02/15 21:05:04
These 5 are the sources that are moved out from th
| |
| 475 'audio_coding/codecs/isac/fix/source/filterbanks_unittest.cc', | |
| 476 'audio_coding/codecs/isac/fix/source/filters_unittest.cc', | |
| 477 'audio_coding/codecs/isac/fix/source/lpc_masking_model_unittest. cc', | |
| 478 'audio_coding/codecs/isac/fix/source/transform_unittest.cc', | |
| 479 ], | |
| 480 }], | |
| 492 ], | 481 ], |
| 493 }], | 482 # Disable warnings to enable Win64 build, issue 1323. |
| 483 'msvs_disabled_warnings': [ | |
| 484 4267, # size_t to int truncation. | |
| 485 ], | |
| 486 }, | |
| 487 ], | |
| 488 'conditions': [ | |
| 494 ['OS=="android"', { | 489 ['OS=="android"', { |
| 495 'targets': [ | 490 'targets': [ |
| 496 { | 491 { |
| 497 'target_name': 'modules_unittests_apk_target', | 492 'target_name': 'modules_unittests_apk_target', |
| 498 'type': 'none', | 493 'type': 'none', |
| 499 'dependencies': [ | 494 'dependencies': [ |
| 500 '<(apk_tests_path):modules_unittests_apk', | 495 '<(apk_tests_path):modules_unittests_apk', |
| 501 ], | 496 ], |
| 502 }, | 497 }, |
| 503 { | 498 { |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 588 'sources': [ | 583 'sources': [ |
| 589 'video_render_tests.isolate', | 584 'video_render_tests.isolate', |
| 590 ], | 585 ], |
| 591 }, | 586 }, |
| 592 ], | 587 ], |
| 593 }], | 588 }], |
| 594 ], | 589 ], |
| 595 }], # include_tests | 590 }], # include_tests |
| 596 ], # conditions | 591 ], # conditions |
| 597 } | 592 } |
| OLD | NEW |