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

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

Issue 2111293003: Removed callback between old AudioConferenceMixer and OutputMixer. The audio frame with mixed audio… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@new_mixer_format
Patch Set: Renamed variables, removed DCHECK(false), changed back copyright years. Created 4 years, 5 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 | « no previous file | webrtc/modules/audio_mixer/audio_mixer.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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
11 import("//testing/test.gni") 11 import("//testing/test.gni")
12 12
13 declare_args() { 13 declare_args() {
14 # Desktop capturer is supported only on Windows, OSX and Linux. 14 # Desktop capturer is supported only on Windows, OSX and Linux.
15 rtc_desktop_capture_supported = is_win || is_mac || is_linux 15 rtc_desktop_capture_supported = is_win || is_mac || is_linux
16 } 16 }
17 17
18 group("modules") { 18 group("modules") {
19 deps = [ 19 deps = [
20 "audio_coding", 20 "audio_coding",
21 "audio_conference_mixer", 21 "audio_conference_mixer",
22 "audio_device", 22 "audio_device",
23 "audio_mixer",
23 "audio_processing", 24 "audio_processing",
24 "bitrate_controller", 25 "bitrate_controller",
25 "desktop_capture", 26 "desktop_capture",
26 "media_file", 27 "media_file",
27 "rtp_rtcp", 28 "rtp_rtcp",
28 "utility", 29 "utility",
29 "video_coding", 30 "video_coding",
30 "video_processing", 31 "video_processing",
31 ] 32 ]
32 } 33 }
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "audio_coding/neteq/post_decode_vad_unittest.cc", 98 "audio_coding/neteq/post_decode_vad_unittest.cc",
98 "audio_coding/neteq/random_vector_unittest.cc", 99 "audio_coding/neteq/random_vector_unittest.cc",
99 "audio_coding/neteq/sync_buffer_unittest.cc", 100 "audio_coding/neteq/sync_buffer_unittest.cc",
100 "audio_coding/neteq/tick_timer_unittest.cc", 101 "audio_coding/neteq/tick_timer_unittest.cc",
101 "audio_coding/neteq/time_stretch_unittest.cc", 102 "audio_coding/neteq/time_stretch_unittest.cc",
102 "audio_coding/neteq/timestamp_scaler_unittest.cc", 103 "audio_coding/neteq/timestamp_scaler_unittest.cc",
103 "audio_coding/neteq/tools/input_audio_file_unittest.cc", 104 "audio_coding/neteq/tools/input_audio_file_unittest.cc",
104 "audio_coding/neteq/tools/packet_unittest.cc", 105 "audio_coding/neteq/tools/packet_unittest.cc",
105 "audio_conference_mixer/test/audio_conference_mixer_unittest.cc", 106 "audio_conference_mixer/test/audio_conference_mixer_unittest.cc",
106 "audio_device/fine_audio_buffer_unittest.cc", 107 "audio_device/fine_audio_buffer_unittest.cc",
108 "audio_mixer/test/audio_mixer_unittest.cc",
107 "audio_processing/aec/echo_cancellation_unittest.cc", 109 "audio_processing/aec/echo_cancellation_unittest.cc",
108 "audio_processing/aec/system_delay_unittest.cc", 110 "audio_processing/aec/system_delay_unittest.cc",
109 "audio_processing/agc/agc_manager_direct_unittest.cc", 111 "audio_processing/agc/agc_manager_direct_unittest.cc",
110 112
111 # TODO(ajm): Fix to match new interface. 113 # TODO(ajm): Fix to match new interface.
112 # "audio_processing/agc/agc_unittest.cc", 114 # "audio_processing/agc/agc_unittest.cc",
113 "audio_processing/agc/loudness_histogram_unittest.cc", 115 "audio_processing/agc/loudness_histogram_unittest.cc",
114 "audio_processing/agc/mock_agc.h", 116 "audio_processing/agc/mock_agc.h",
115 "audio_processing/audio_buffer_unittest.cc", 117 "audio_processing/audio_buffer_unittest.cc",
116 "audio_processing/beamformer/array_util_unittest.cc", 118 "audio_processing/beamformer/array_util_unittest.cc",
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 "audio_coding:cng", 374 "audio_coding:cng",
373 "audio_coding:isac_fix", 375 "audio_coding:isac_fix",
374 "audio_coding:neteq", 376 "audio_coding:neteq",
375 "audio_coding:neteq_test_support", 377 "audio_coding:neteq_test_support",
376 "audio_coding:neteq_unittest_tools", 378 "audio_coding:neteq_unittest_tools",
377 "audio_coding:pcm16b", 379 "audio_coding:pcm16b",
378 "audio_coding:red", 380 "audio_coding:red",
379 "audio_coding:webrtc_opus", 381 "audio_coding:webrtc_opus",
380 "audio_conference_mixer", 382 "audio_conference_mixer",
381 "audio_device", 383 "audio_device",
384 "audio_mixer",
382 "audio_processing", 385 "audio_processing",
383 "audio_processing:audioproc_test_utils", 386 "audio_processing:audioproc_test_utils",
384 "bitrate_controller", 387 "bitrate_controller",
385 "media_file", 388 "media_file",
386 "pacing", 389 "pacing",
387 "remote_bitrate_estimator", 390 "remote_bitrate_estimator",
388 "remote_bitrate_estimator:bwe_simulator", 391 "remote_bitrate_estimator:bwe_simulator",
389 "rtp_rtcp", 392 "rtp_rtcp",
390 "utility", 393 "utility",
391 "video_capture", 394 "video_capture",
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 "audio_device/ios/objc/RTCAudioSessionTest.mm", 534 "audio_device/ios/objc/RTCAudioSessionTest.mm",
532 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", 535 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc",
533 ] 536 ]
534 537
535 ldflags = [ "-ObjC" ] 538 ldflags = [ "-ObjC" ]
536 539
537 # TODO(kjellander): Mac bundle files. 540 # TODO(kjellander): Mac bundle files.
538 } 541 }
539 } 542 }
540 } 543 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_mixer/audio_mixer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698