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

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

Issue 2411313003: Split audio mixer into interface and implementation. (Closed)
Patch Set: Reorder includes. 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 "audio_coding:cng", 637 "audio_coding:cng",
638 "audio_coding:isac_fix", 638 "audio_coding:isac_fix",
639 "audio_coding:neteq", 639 "audio_coding:neteq",
640 "audio_coding:neteq_test_support", 640 "audio_coding:neteq_test_support",
641 "audio_coding:neteq_unittest_tools", 641 "audio_coding:neteq_unittest_tools",
642 "audio_coding:pcm16b", 642 "audio_coding:pcm16b",
643 "audio_coding:red", 643 "audio_coding:red",
644 "audio_coding:webrtc_opus", 644 "audio_coding:webrtc_opus",
645 "audio_conference_mixer", 645 "audio_conference_mixer",
646 "audio_device", 646 "audio_device",
647 "audio_mixer", 647 "audio_mixer:audio_mixer_impl",
648 "audio_processing", 648 "audio_processing",
649 "audio_processing:audioproc_test_utils", 649 "audio_processing:audioproc_test_utils",
650 "bitrate_controller", 650 "bitrate_controller",
651 "media_file", 651 "media_file",
652 "pacing", 652 "pacing",
653 "remote_bitrate_estimator", 653 "remote_bitrate_estimator",
654 "remote_bitrate_estimator:bwe_simulator_lib", 654 "remote_bitrate_estimator:bwe_simulator_lib",
655 "rtp_rtcp", 655 "rtp_rtcp",
656 "utility", 656 "utility",
657 "video_capture", 657 "video_capture",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 "../test:test_common", 733 "../test:test_common",
734 "../test:test_support_main", 734 "../test:test_support_main",
735 "remote_bitrate_estimator:bwe_simulator_lib", 735 "remote_bitrate_estimator:bwe_simulator_lib",
736 "video_capture", 736 "video_capture",
737 "//testing/gmock", 737 "//testing/gmock",
738 "//testing/gtest", 738 "//testing/gtest",
739 "//third_party/gflags", 739 "//third_party/gflags",
740 ] 740 ]
741 } 741 }
742 } 742 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698