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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
51 { | 51 { |
52 'target_name': 'modules_unittests', | 52 'target_name': 'modules_unittests', |
53 'type': '<(gtest_target_type)', | 53 'type': '<(gtest_target_type)', |
54 'defines': [ | 54 'defines': [ |
55 '<@(audio_coding_defines)', | 55 '<@(audio_coding_defines)', |
56 ], | 56 ], |
57 'dependencies': [ | 57 'dependencies': [ |
58 'acm_receive_test', | 58 'acm_receive_test', |
59 'acm_send_test', | 59 'acm_send_test', |
60 'audio_coding_module', | 60 'audio_coding_module', |
61 'audio_conference_mixer', | |
61 'audio_device' , | 62 'audio_device' , |
62 'audio_processing', | 63 'audio_processing', |
63 'audioproc_test_utils', | 64 'audioproc_test_utils', |
64 'bitrate_controller', | 65 'bitrate_controller', |
65 'bwe_simulator', | 66 'bwe_simulator', |
66 'cng', | 67 'cng', |
67 'desktop_capture', | 68 'desktop_capture', |
68 'isac_fix', | 69 'isac_fix', |
69 'media_file', | 70 'media_file', |
70 'neteq', | 71 'neteq', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
151 'audio_coding/neteq/mock/mock_delay_manager.h', | 152 'audio_coding/neteq/mock/mock_delay_manager.h', |
152 'audio_coding/neteq/mock/mock_delay_peak_detector.h', | 153 'audio_coding/neteq/mock/mock_delay_peak_detector.h', |
153 'audio_coding/neteq/mock/mock_dtmf_buffer.h', | 154 'audio_coding/neteq/mock/mock_dtmf_buffer.h', |
154 'audio_coding/neteq/mock/mock_dtmf_tone_generator.h', | 155 'audio_coding/neteq/mock/mock_dtmf_tone_generator.h', |
155 'audio_coding/neteq/mock/mock_expand.h', | 156 'audio_coding/neteq/mock/mock_expand.h', |
156 'audio_coding/neteq/mock/mock_external_decoder_pcm16b.h', | 157 'audio_coding/neteq/mock/mock_external_decoder_pcm16b.h', |
157 'audio_coding/neteq/mock/mock_packet_buffer.h', | 158 'audio_coding/neteq/mock/mock_packet_buffer.h', |
158 'audio_coding/neteq/mock/mock_payload_splitter.h', | 159 'audio_coding/neteq/mock/mock_payload_splitter.h', |
159 'audio_coding/neteq/tools/input_audio_file_unittest.cc', | 160 'audio_coding/neteq/tools/input_audio_file_unittest.cc', |
160 'audio_coding/neteq/tools/packet_unittest.cc', | 161 'audio_coding/neteq/tools/packet_unittest.cc', |
162 'audio_conference_mixer/test/audio_conference_mixer_unittest.cc', | |
ajm
2015/08/04 21:09:03
nit: It's more typical to put the unit test alongs
minyue-webrtc
2015/08/25 15:36:12
Ok, but does that mean a big change in 'target_nam
| |
161 'audio_processing/aec/echo_cancellation_unittest.cc', | 163 'audio_processing/aec/echo_cancellation_unittest.cc', |
162 'audio_processing/aec/system_delay_unittest.cc', | 164 'audio_processing/aec/system_delay_unittest.cc', |
163 # TODO(ajm): Fix to match new interface. | 165 # TODO(ajm): Fix to match new interface. |
164 # 'audio_processing/agc/agc_unittest.cc', | 166 # 'audio_processing/agc/agc_unittest.cc', |
165 'audio_processing/agc/histogram_unittest.cc', | 167 'audio_processing/agc/histogram_unittest.cc', |
166 'audio_processing/agc/mock_agc.h', | 168 'audio_processing/agc/mock_agc.h', |
167 'audio_processing/beamformer/complex_matrix_unittest.cc', | 169 'audio_processing/beamformer/complex_matrix_unittest.cc', |
168 'audio_processing/beamformer/covariance_matrix_generator_unittest.cc ', | 170 'audio_processing/beamformer/covariance_matrix_generator_unittest.cc ', |
169 'audio_processing/beamformer/matrix_unittest.cc', | 171 'audio_processing/beamformer/matrix_unittest.cc', |
170 'audio_processing/beamformer/mock_nonlinear_beamformer.cc', | 172 'audio_processing/beamformer/mock_nonlinear_beamformer.cc', |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
489 'sources': [ | 491 'sources': [ |
490 'modules_unittests.isolate', | 492 'modules_unittests.isolate', |
491 ], | 493 ], |
492 }, | 494 }, |
493 ], | 495 ], |
494 }], | 496 }], |
495 ], | 497 ], |
496 }], # include_tests | 498 }], # include_tests |
497 ], # conditions | 499 ], # conditions |
498 } | 500 } |
OLD | NEW |