Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: webrtc/voice_engine/voice_engine.gyp

Issue 1428613004: Revert of Prevent Opus DTX from generating intermittent noise during silence (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/voice_engine/test/auto_test/voe_output_test.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 10 matching lines...) Expand all
21 '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer', 21 '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer',
22 '<(webrtc_root)/modules/modules.gyp:audio_device', 22 '<(webrtc_root)/modules/modules.gyp:audio_device',
23 '<(webrtc_root)/modules/modules.gyp:audio_processing', 23 '<(webrtc_root)/modules/modules.gyp:audio_processing',
24 '<(webrtc_root)/modules/modules.gyp:bitrate_controller', 24 '<(webrtc_root)/modules/modules.gyp:bitrate_controller',
25 '<(webrtc_root)/modules/modules.gyp:media_file', 25 '<(webrtc_root)/modules/modules.gyp:media_file',
26 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', 26 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
27 '<(webrtc_root)/modules/modules.gyp:webrtc_utility', 27 '<(webrtc_root)/modules/modules.gyp:webrtc_utility',
28 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 28 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
29 '<(webrtc_root)/webrtc.gyp:rtc_event_log', 29 '<(webrtc_root)/webrtc.gyp:rtc_event_log',
30 ], 30 ],
31 'export_dependent_settings': [
32 '<(webrtc_root)/modules/modules.gyp:audio_coding_module',
33 ],
34 'sources': [ 31 'sources': [
35 'include/voe_audio_processing.h', 32 'include/voe_audio_processing.h',
36 'include/voe_base.h', 33 'include/voe_base.h',
37 'include/voe_codec.h', 34 'include/voe_codec.h',
38 'include/voe_dtmf.h', 35 'include/voe_dtmf.h',
39 'include/voe_errors.h', 36 'include/voe_errors.h',
40 'include/voe_external_media.h', 37 'include/voe_external_media.h',
41 'include/voe_file.h', 38 'include/voe_file.h',
42 'include/voe_hardware.h', 39 'include/voe_hardware.h',
43 'include/voe_neteq_stats.h', 40 'include/voe_neteq_stats.h',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 'type': 'executable', 147 'type': 'executable',
151 'dependencies': [ 148 'dependencies': [
152 'voice_engine', 149 'voice_engine',
153 '<(DEPTH)/testing/gmock.gyp:gmock', 150 '<(DEPTH)/testing/gmock.gyp:gmock',
154 '<(DEPTH)/testing/gtest.gyp:gtest', 151 '<(DEPTH)/testing/gtest.gyp:gtest',
155 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 152 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
156 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , 153 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' ,
157 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_ default', 154 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_ default',
158 '<(webrtc_root)/test/test.gyp:channel_transport', 155 '<(webrtc_root)/test/test.gyp:channel_transport',
159 '<(webrtc_root)/test/test.gyp:test_support', 156 '<(webrtc_root)/test/test.gyp:test_support',
160 '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common',
161 '<(webrtc_root)/webrtc.gyp:rtc_event_log', 157 '<(webrtc_root)/webrtc.gyp:rtc_event_log',
162 ], 158 ],
163 'sources': [ 159 'sources': [
164 'test/auto_test/automated_mode.cc', 160 'test/auto_test/automated_mode.cc',
165 'test/auto_test/extended/agc_config_test.cc', 161 'test/auto_test/extended/agc_config_test.cc',
166 'test/auto_test/extended/ec_metrics_test.cc', 162 'test/auto_test/extended/ec_metrics_test.cc',
167 'test/auto_test/fakes/conference_transport.cc', 163 'test/auto_test/fakes/conference_transport.cc',
168 'test/auto_test/fakes/conference_transport.h', 164 'test/auto_test/fakes/conference_transport.h',
169 'test/auto_test/fakes/loudest_filter.cc', 165 'test/auto_test/fakes/loudest_filter.cc',
170 'test/auto_test/fakes/loudest_filter.h', 166 'test/auto_test/fakes/loudest_filter.h',
(...skipping 20 matching lines...) Expand all
191 'test/auto_test/standard/rtp_rtcp_before_streaming_test.cc', 187 'test/auto_test/standard/rtp_rtcp_before_streaming_test.cc',
192 'test/auto_test/standard/rtp_rtcp_extensions.cc', 188 'test/auto_test/standard/rtp_rtcp_extensions.cc',
193 'test/auto_test/standard/rtp_rtcp_test.cc', 189 'test/auto_test/standard/rtp_rtcp_test.cc',
194 'test/auto_test/standard/voe_base_misc_test.cc', 190 'test/auto_test/standard/voe_base_misc_test.cc',
195 'test/auto_test/standard/video_sync_test.cc', 191 'test/auto_test/standard/video_sync_test.cc',
196 'test/auto_test/standard/volume_test.cc', 192 'test/auto_test/standard/volume_test.cc',
197 'test/auto_test/resource_manager.cc', 193 'test/auto_test/resource_manager.cc',
198 'test/auto_test/voe_conference_test.cc', 194 'test/auto_test/voe_conference_test.cc',
199 'test/auto_test/voe_cpu_test.cc', 195 'test/auto_test/voe_cpu_test.cc',
200 'test/auto_test/voe_cpu_test.h', 196 'test/auto_test/voe_cpu_test.h',
201 'test/auto_test/voe_output_test.cc',
202 'test/auto_test/voe_standard_test.cc', 197 'test/auto_test/voe_standard_test.cc',
203 'test/auto_test/voe_standard_test.h', 198 'test/auto_test/voe_standard_test.h',
204 'test/auto_test/voe_stress_test.cc', 199 'test/auto_test/voe_stress_test.cc',
205 'test/auto_test/voe_stress_test.h', 200 'test/auto_test/voe_stress_test.h',
206 'test/auto_test/voe_test_defines.h', 201 'test/auto_test/voe_test_defines.h',
207 'test/auto_test/voe_test_interface.h', 202 'test/auto_test/voe_test_interface.h',
208 ], 203 ],
209 'conditions': [ 204 'conditions': [
210 ['OS=="android"', { 205 ['OS=="android"', {
211 # some tests are not supported on android yet, exclude these tests . 206 # some tests are not supported on android yet, exclude these tests .
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 'sources': [ 277 'sources': [
283 'voe_auto_test.isolate', 278 'voe_auto_test.isolate',
284 ], 279 ],
285 }, 280 },
286 ], 281 ],
287 }], 282 }],
288 ], # conditions 283 ], # conditions
289 }], # include_tests 284 }], # include_tests
290 ], # conditions 285 ], # conditions
291 } 286 }
OLDNEW
« no previous file with comments | « webrtc/voice_engine/test/auto_test/voe_output_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698