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

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

Issue 2411313003: Split audio mixer into interface and implementation. (Closed)
Patch Set: Capitalize Ssrc Created 4 years, 2 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
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 11
12 declare_args() { 12 declare_args() {
13 # Desktop capturer is supported only on Windows, OSX and Linux. 13 # Desktop capturer is supported only on Windows, OSX and Linux.
14 rtc_desktop_capture_supported = is_win || is_mac || is_linux 14 rtc_desktop_capture_supported = is_win || is_mac || is_linux
15 } 15 }
16 16
17 group("modules") { 17 group("modules") {
18 public_deps = [ 18 public_deps = [
19 "audio_coding", 19 "audio_coding",
20 "audio_conference_mixer", 20 "audio_conference_mixer",
21 "audio_device", 21 "audio_device",
22 "audio_mixer", 22 "audio_mixer:audio_mixer_impl",
23 "audio_processing", 23 "audio_processing",
24 "bitrate_controller", 24 "bitrate_controller",
25 "desktop_capture", 25 "desktop_capture",
26 "media_file", 26 "media_file",
27 "rtp_rtcp", 27 "rtp_rtcp",
28 "utility", 28 "utility",
29 "video_coding", 29 "video_coding",
30 "video_processing", 30 "video_processing",
31 ] 31 ]
32 } 32 }
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 621
622 deps += [ 622 deps += [
623 ":audio_network_adaptor_unittests", 623 ":audio_network_adaptor_unittests",
624 "..:webrtc_common", 624 "..:webrtc_common",
625 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. 625 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806.
626 "../common_audio", 626 "../common_audio",
627 "../common_video", 627 "../common_video",
628 "../system_wrappers:system_wrappers", 628 "../system_wrappers:system_wrappers",
629 "../test:rtp_test_utils", 629 "../test:rtp_test_utils",
630 "../test:test_common", 630 "../test:test_common",
631 "../test:test_support",
631 "../test:test_support_main", 632 "../test:test_support_main",
632 "../test:video_test_common", 633 "../test:video_test_common",
633 "audio_coding", 634 "audio_coding",
634 "audio_coding:acm_receive_test", 635 "audio_coding:acm_receive_test",
635 "audio_coding:acm_send_test", 636 "audio_coding:acm_send_test",
636 "audio_coding:builtin_audio_decoder_factory", 637 "audio_coding:builtin_audio_decoder_factory",
637 "audio_coding:cng", 638 "audio_coding:cng",
638 "audio_coding:isac_fix", 639 "audio_coding:isac_fix",
639 "audio_coding:neteq", 640 "audio_coding:neteq",
640 "audio_coding:neteq_test_support", 641 "audio_coding:neteq_test_support",
641 "audio_coding:neteq_unittest_tools", 642 "audio_coding:neteq_unittest_tools",
642 "audio_coding:pcm16b", 643 "audio_coding:pcm16b",
643 "audio_coding:red", 644 "audio_coding:red",
644 "audio_coding:webrtc_opus", 645 "audio_coding:webrtc_opus",
645 "audio_conference_mixer", 646 "audio_conference_mixer",
646 "audio_device", 647 "audio_device",
647 "audio_mixer", 648 "audio_mixer:audio_frame_manipulator",
649 "audio_mixer:audio_mixer_impl",
648 "audio_processing", 650 "audio_processing",
649 "audio_processing:audioproc_test_utils", 651 "audio_processing:audioproc_test_utils",
650 "bitrate_controller", 652 "bitrate_controller",
651 "media_file", 653 "media_file",
652 "pacing", 654 "pacing",
653 "remote_bitrate_estimator", 655 "remote_bitrate_estimator",
654 "remote_bitrate_estimator:bwe_simulator_lib", 656 "remote_bitrate_estimator:bwe_simulator_lib",
655 "rtp_rtcp", 657 "rtp_rtcp",
656 "utility", 658 "utility",
657 "video_capture", 659 "video_capture",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 "../test:test_common", 735 "../test:test_common",
734 "../test:test_support_main", 736 "../test:test_support_main",
735 "remote_bitrate_estimator:bwe_simulator_lib", 737 "remote_bitrate_estimator:bwe_simulator_lib",
736 "video_capture", 738 "video_capture",
737 "//testing/gmock", 739 "//testing/gmock",
738 "//testing/gtest", 740 "//testing/gtest",
739 "//third_party/gflags", 741 "//third_party/gflags",
740 ] 742 ]
741 } 743 }
742 } 744 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698