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

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2738543002: Remove VoEAudioProcessing interface. (Closed)
Patch Set: rebase Created 3 years, 9 months 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/test/mock_voice_engine.h ('k') | webrtc/voice_engine/channel.h » ('j') | 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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("../webrtc.gni") 9 import("../webrtc.gni")
10 10
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 } 67 }
68 68
69 rtc_static_library("voice_engine") { 69 rtc_static_library("voice_engine") {
70 sources = [ 70 sources = [
71 "channel.cc", 71 "channel.cc",
72 "channel.h", 72 "channel.h",
73 "channel_manager.cc", 73 "channel_manager.cc",
74 "channel_manager.h", 74 "channel_manager.h",
75 "channel_proxy.cc", 75 "channel_proxy.cc",
76 "channel_proxy.h", 76 "channel_proxy.h",
77 "include/voe_audio_processing.h",
78 "include/voe_base.h", 77 "include/voe_base.h",
79 "include/voe_codec.h", 78 "include/voe_codec.h",
80 "include/voe_errors.h", 79 "include/voe_errors.h",
81 "include/voe_file.h", 80 "include/voe_file.h",
82 "include/voe_hardware.h", 81 "include/voe_hardware.h",
83 "include/voe_neteq_stats.h", 82 "include/voe_neteq_stats.h",
84 "include/voe_network.h", 83 "include/voe_network.h",
85 "include/voe_rtp_rtcp.h", 84 "include/voe_rtp_rtcp.h",
86 "monitor_module.h", 85 "monitor_module.h",
87 "output_mixer.cc", 86 "output_mixer.cc",
88 "output_mixer.h", 87 "output_mixer.h",
89 "shared_data.cc", 88 "shared_data.cc",
90 "shared_data.h", 89 "shared_data.h",
91 "statistics.cc", 90 "statistics.cc",
92 "statistics.h", 91 "statistics.h",
93 "transmit_mixer.cc", 92 "transmit_mixer.cc",
94 "transmit_mixer.h", 93 "transmit_mixer.h",
95 "transport_feedback_packet_loss_tracker.cc", 94 "transport_feedback_packet_loss_tracker.cc",
96 "transport_feedback_packet_loss_tracker.h", 95 "transport_feedback_packet_loss_tracker.h",
97 "utility.cc", 96 "utility.cc",
98 "utility.h", 97 "utility.h",
99 "voe_audio_processing_impl.cc",
100 "voe_audio_processing_impl.h",
101 "voe_base_impl.cc", 98 "voe_base_impl.cc",
102 "voe_base_impl.h", 99 "voe_base_impl.h",
103 "voe_codec_impl.cc", 100 "voe_codec_impl.cc",
104 "voe_codec_impl.h", 101 "voe_codec_impl.h",
105 "voe_file_impl.cc", 102 "voe_file_impl.cc",
106 "voe_file_impl.h", 103 "voe_file_impl.h",
107 "voe_hardware_impl.cc", 104 "voe_hardware_impl.cc",
108 "voe_hardware_impl.h", 105 "voe_hardware_impl.h",
109 "voe_neteq_stats_impl.cc", 106 "voe_neteq_stats_impl.cc",
110 "voe_neteq_stats_impl.h", 107 "voe_neteq_stats_impl.h",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 if (is_android) { 199 if (is_android) {
203 deps += [ "//testing/android/native_test:native_test_native_code" ] 200 deps += [ "//testing/android/native_test:native_test_native_code" ]
204 shard_timeout = 900 201 shard_timeout = 900
205 } 202 }
206 203
207 sources = [ 204 sources = [
208 "channel_unittest.cc", 205 "channel_unittest.cc",
209 "file_player_unittests.cc", 206 "file_player_unittests.cc",
210 "transport_feedback_packet_loss_tracker_unittest.cc", 207 "transport_feedback_packet_loss_tracker_unittest.cc",
211 "utility_unittest.cc", 208 "utility_unittest.cc",
212 "voe_audio_processing_unittest.cc",
213 "voe_base_unittest.cc", 209 "voe_base_unittest.cc",
214 "voe_codec_unittest.cc", 210 "voe_codec_unittest.cc",
215 "voe_network_unittest.cc", 211 "voe_network_unittest.cc",
216 "voice_engine_fixture.cc", 212 "voice_engine_fixture.cc",
217 "voice_engine_fixture.h", 213 "voice_engine_fixture.h",
218 ] 214 ]
219 215
220 data = [ 216 data = [
221 "//resources/utility/encapsulated_pcm16b_8khz.wav", 217 "//resources/utility/encapsulated_pcm16b_8khz.wav",
222 "//resources/utility/encapsulated_pcmu_8khz.wav", 218 "//resources/utility/encapsulated_pcmu_8khz.wav",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 "//webrtc/modules/video_capture", 251 "//webrtc/modules/video_capture",
256 "//webrtc/system_wrappers", 252 "//webrtc/system_wrappers",
257 "//webrtc/system_wrappers/:system_wrappers_default", 253 "//webrtc/system_wrappers/:system_wrappers_default",
258 "//webrtc/test/:test_common", 254 "//webrtc/test/:test_common",
259 "//webrtc/test/:test_support", 255 "//webrtc/test/:test_support",
260 "//webrtc/test/:video_test_common", 256 "//webrtc/test/:video_test_common",
261 ] 257 ]
262 258
263 sources = [ 259 sources = [
264 "test/auto_test/automated_mode.cc", 260 "test/auto_test/automated_mode.cc",
265 "test/auto_test/extended/agc_config_test.cc",
266 "test/auto_test/extended/ec_metrics_test.cc",
267 "test/auto_test/fakes/conference_transport.cc", 261 "test/auto_test/fakes/conference_transport.cc",
268 "test/auto_test/fakes/conference_transport.h", 262 "test/auto_test/fakes/conference_transport.h",
269 "test/auto_test/fakes/loudest_filter.cc", 263 "test/auto_test/fakes/loudest_filter.cc",
270 "test/auto_test/fakes/loudest_filter.h", 264 "test/auto_test/fakes/loudest_filter.h",
271 "test/auto_test/fixtures/after_initialization_fixture.cc", 265 "test/auto_test/fixtures/after_initialization_fixture.cc",
272 "test/auto_test/fixtures/after_initialization_fixture.h", 266 "test/auto_test/fixtures/after_initialization_fixture.h",
273 "test/auto_test/fixtures/after_streaming_fixture.cc", 267 "test/auto_test/fixtures/after_streaming_fixture.cc",
274 "test/auto_test/fixtures/after_streaming_fixture.h", 268 "test/auto_test/fixtures/after_streaming_fixture.h",
275 "test/auto_test/fixtures/before_initialization_fixture.cc", 269 "test/auto_test/fixtures/before_initialization_fixture.cc",
276 "test/auto_test/fixtures/before_initialization_fixture.h", 270 "test/auto_test/fixtures/before_initialization_fixture.h",
277 "test/auto_test/fixtures/before_streaming_fixture.cc", 271 "test/auto_test/fixtures/before_streaming_fixture.cc",
278 "test/auto_test/fixtures/before_streaming_fixture.h", 272 "test/auto_test/fixtures/before_streaming_fixture.h",
279 "test/auto_test/standard/audio_processing_test.cc",
280 "test/auto_test/standard/codec_before_streaming_test.cc", 273 "test/auto_test/standard/codec_before_streaming_test.cc",
281 "test/auto_test/standard/codec_test.cc", 274 "test/auto_test/standard/codec_test.cc",
282 "test/auto_test/standard/dtmf_test.cc", 275 "test/auto_test/standard/dtmf_test.cc",
283 "test/auto_test/standard/file_before_streaming_test.cc", 276 "test/auto_test/standard/file_before_streaming_test.cc",
284 "test/auto_test/standard/file_test.cc", 277 "test/auto_test/standard/file_test.cc",
285 "test/auto_test/standard/hardware_before_initializing_test.cc", 278 "test/auto_test/standard/hardware_before_initializing_test.cc",
286 "test/auto_test/standard/hardware_test.cc", 279 "test/auto_test/standard/hardware_test.cc",
287 "test/auto_test/standard/mixing_test.cc", 280 "test/auto_test/standard/mixing_test.cc",
288 "test/auto_test/standard/neteq_stats_test.cc", 281 "test/auto_test/standard/neteq_stats_test.cc",
289 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc", 282 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc",
(...skipping 28 matching lines...) Expand all
318 ] 311 ]
319 } 312 }
320 313
321 if (!build_with_chromium && is_clang) { 314 if (!build_with_chromium && is_clang) {
322 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 315 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
323 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 316 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
324 } 317 }
325 } 318 }
326 } 319 }
327 } 320 }
OLDNEW
« no previous file with comments | « webrtc/test/mock_voice_engine.h ('k') | webrtc/voice_engine/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698