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

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

Issue 2645033002: Remove VoEExternalMedia interface. (Closed)
Patch Set: bad merge Created 3 years, 10 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", 77 "include/voe_audio_processing.h",
78 "include/voe_base.h", 78 "include/voe_base.h",
79 "include/voe_codec.h", 79 "include/voe_codec.h",
80 "include/voe_errors.h", 80 "include/voe_errors.h",
81 "include/voe_external_media.h",
82 "include/voe_file.h", 81 "include/voe_file.h",
83 "include/voe_hardware.h", 82 "include/voe_hardware.h",
84 "include/voe_neteq_stats.h", 83 "include/voe_neteq_stats.h",
85 "include/voe_network.h", 84 "include/voe_network.h",
86 "include/voe_rtp_rtcp.h", 85 "include/voe_rtp_rtcp.h",
87 "include/voe_video_sync.h", 86 "include/voe_video_sync.h",
88 "include/voe_volume_control.h", 87 "include/voe_volume_control.h",
89 "monitor_module.cc", 88 "monitor_module.cc",
90 "monitor_module.h", 89 "monitor_module.h",
91 "output_mixer.cc", 90 "output_mixer.cc",
92 "output_mixer.h", 91 "output_mixer.h",
93 "shared_data.cc", 92 "shared_data.cc",
94 "shared_data.h", 93 "shared_data.h",
95 "statistics.cc", 94 "statistics.cc",
96 "statistics.h", 95 "statistics.h",
97 "transmit_mixer.cc", 96 "transmit_mixer.cc",
98 "transmit_mixer.h", 97 "transmit_mixer.h",
99 "transport_feedback_packet_loss_tracker.cc", 98 "transport_feedback_packet_loss_tracker.cc",
100 "transport_feedback_packet_loss_tracker.h", 99 "transport_feedback_packet_loss_tracker.h",
101 "utility.cc", 100 "utility.cc",
102 "utility.h", 101 "utility.h",
103 "voe_audio_processing_impl.cc", 102 "voe_audio_processing_impl.cc",
104 "voe_audio_processing_impl.h", 103 "voe_audio_processing_impl.h",
105 "voe_base_impl.cc", 104 "voe_base_impl.cc",
106 "voe_base_impl.h", 105 "voe_base_impl.h",
107 "voe_codec_impl.cc", 106 "voe_codec_impl.cc",
108 "voe_codec_impl.h", 107 "voe_codec_impl.h",
109 "voe_external_media_impl.cc",
110 "voe_external_media_impl.h",
111 "voe_file_impl.cc", 108 "voe_file_impl.cc",
112 "voe_file_impl.h", 109 "voe_file_impl.h",
113 "voe_hardware_impl.cc", 110 "voe_hardware_impl.cc",
114 "voe_hardware_impl.h", 111 "voe_hardware_impl.h",
115 "voe_neteq_stats_impl.cc", 112 "voe_neteq_stats_impl.cc",
116 "voe_neteq_stats_impl.h", 113 "voe_neteq_stats_impl.h",
117 "voe_network_impl.cc", 114 "voe_network_impl.cc",
118 "voe_network_impl.h", 115 "voe_network_impl.h",
119 "voe_rtp_rtcp_impl.cc", 116 "voe_rtp_rtcp_impl.cc",
120 "voe_rtp_rtcp_impl.h", 117 "voe_rtp_rtcp_impl.h",
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 deps += [ "//testing/android/native_test:native_test_native_code" ] 267 deps += [ "//testing/android/native_test:native_test_native_code" ]
271 shard_timeout = 900 268 shard_timeout = 900
272 } 269 }
273 270
274 sources = [ 271 sources = [
275 "channel_unittest.cc", 272 "channel_unittest.cc",
276 "file_player_unittests.cc", 273 "file_player_unittests.cc",
277 "test/channel_transport/udp_socket_manager_unittest.cc", 274 "test/channel_transport/udp_socket_manager_unittest.cc",
278 "test/channel_transport/udp_socket_wrapper_unittest.cc", 275 "test/channel_transport/udp_socket_wrapper_unittest.cc",
279 "test/channel_transport/udp_transport_unittest.cc", 276 "test/channel_transport/udp_transport_unittest.cc",
280 "transmit_mixer_unittest.cc",
281 "transport_feedback_packet_loss_tracker_unittest.cc", 277 "transport_feedback_packet_loss_tracker_unittest.cc",
282 "utility_unittest.cc", 278 "utility_unittest.cc",
283 "voe_audio_processing_unittest.cc", 279 "voe_audio_processing_unittest.cc",
284 "voe_base_unittest.cc", 280 "voe_base_unittest.cc",
285 "voe_codec_unittest.cc", 281 "voe_codec_unittest.cc",
286 "voe_network_unittest.cc", 282 "voe_network_unittest.cc",
287 "voice_engine_fixture.cc", 283 "voice_engine_fixture.cc",
288 "voice_engine_fixture.h", 284 "voice_engine_fixture.h",
289 ] 285 ]
290 286
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 "test/auto_test/fixtures/after_streaming_fixture.cc", 360 "test/auto_test/fixtures/after_streaming_fixture.cc",
365 "test/auto_test/fixtures/after_streaming_fixture.h", 361 "test/auto_test/fixtures/after_streaming_fixture.h",
366 "test/auto_test/fixtures/before_initialization_fixture.cc", 362 "test/auto_test/fixtures/before_initialization_fixture.cc",
367 "test/auto_test/fixtures/before_initialization_fixture.h", 363 "test/auto_test/fixtures/before_initialization_fixture.h",
368 "test/auto_test/fixtures/before_streaming_fixture.cc", 364 "test/auto_test/fixtures/before_streaming_fixture.cc",
369 "test/auto_test/fixtures/before_streaming_fixture.h", 365 "test/auto_test/fixtures/before_streaming_fixture.h",
370 "test/auto_test/standard/audio_processing_test.cc", 366 "test/auto_test/standard/audio_processing_test.cc",
371 "test/auto_test/standard/codec_before_streaming_test.cc", 367 "test/auto_test/standard/codec_before_streaming_test.cc",
372 "test/auto_test/standard/codec_test.cc", 368 "test/auto_test/standard/codec_test.cc",
373 "test/auto_test/standard/dtmf_test.cc", 369 "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", 370 "test/auto_test/standard/file_before_streaming_test.cc",
376 "test/auto_test/standard/file_test.cc", 371 "test/auto_test/standard/file_test.cc",
377 "test/auto_test/standard/hardware_before_initializing_test.cc", 372 "test/auto_test/standard/hardware_before_initializing_test.cc",
378 "test/auto_test/standard/hardware_test.cc", 373 "test/auto_test/standard/hardware_test.cc",
379 "test/auto_test/standard/mixing_test.cc", 374 "test/auto_test/standard/mixing_test.cc",
380 "test/auto_test/standard/neteq_stats_test.cc", 375 "test/auto_test/standard/neteq_stats_test.cc",
381 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc", 376 "test/auto_test/standard/rtp_rtcp_before_streaming_test.cc",
382 "test/auto_test/standard/rtp_rtcp_extensions.cc", 377 "test/auto_test/standard/rtp_rtcp_extensions.cc",
383 "test/auto_test/standard/rtp_rtcp_test.cc", 378 "test/auto_test/standard/rtp_rtcp_test.cc",
384 "test/auto_test/standard/video_sync_test.cc", 379 "test/auto_test/standard/video_sync_test.cc",
(...skipping 28 matching lines...) Expand all
413 ] 408 ]
414 } 409 }
415 410
416 if (!build_with_chromium && is_clang) { 411 if (!build_with_chromium && is_clang) {
417 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 412 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
418 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 413 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
419 } 414 }
420 } 415 }
421 } 416 }
422 } 417 }
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