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

Side by Side Diff: voice_engine/BUILD.gn

Issue 3015553002: Remove voe::OutputMixer and AudioConferenceMixer. (Closed)
Patch Set: remove conference mixer from presubmit.py Created 3 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
« no previous file with comments | « test/mock_voe_channel_proxy.h ('k') | voice_engine/DEPS » ('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
11 rtc_static_library("voice_engine") { 11 rtc_static_library("voice_engine") {
12 sources = [ 12 sources = [
13 "channel.cc", 13 "channel.cc",
14 "channel.h", 14 "channel.h",
15 "channel_manager.cc", 15 "channel_manager.cc",
16 "channel_manager.h", 16 "channel_manager.h",
17 "channel_proxy.cc", 17 "channel_proxy.cc",
18 "channel_proxy.h", 18 "channel_proxy.h",
19 "include/voe_base.h", 19 "include/voe_base.h",
20 "include/voe_errors.h", 20 "include/voe_errors.h",
21 "monitor_module.h", 21 "monitor_module.h",
22 "output_mixer.cc",
23 "output_mixer.h",
24 "shared_data.cc", 22 "shared_data.cc",
25 "shared_data.h", 23 "shared_data.h",
26 "statistics.cc", 24 "statistics.cc",
27 "statistics.h", 25 "statistics.h",
28 "transmit_mixer.cc", 26 "transmit_mixer.cc",
29 "transmit_mixer.h", 27 "transmit_mixer.h",
30 "transport_feedback_packet_loss_tracker.cc", 28 "transport_feedback_packet_loss_tracker.cc",
31 "transport_feedback_packet_loss_tracker.h", 29 "transport_feedback_packet_loss_tracker.h",
32 "utility.cc", 30 "utility.cc",
33 "utility.h", 31 "utility.h",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 "../api/audio_codecs:audio_codecs_api", 65 "../api/audio_codecs:audio_codecs_api",
68 "../api/audio_codecs:builtin_audio_decoder_factory", 66 "../api/audio_codecs:builtin_audio_decoder_factory",
69 "../api/audio_codecs:builtin_audio_encoder_factory", 67 "../api/audio_codecs:builtin_audio_encoder_factory",
70 "../audio/utility:audio_frame_operations", 68 "../audio/utility:audio_frame_operations",
71 "../call:rtp_interfaces", 69 "../call:rtp_interfaces",
72 "../common_audio", 70 "../common_audio",
73 "../logging:rtc_event_log_api", 71 "../logging:rtc_event_log_api",
74 "../modules:module_api", 72 "../modules:module_api",
75 "../modules/audio_coding:audio_format_conversion", 73 "../modules/audio_coding:audio_format_conversion",
76 "../modules/audio_coding:rent_a_codec", 74 "../modules/audio_coding:rent_a_codec",
77 "../modules/audio_conference_mixer",
78 "../modules/audio_device", 75 "../modules/audio_device",
79 "../modules/audio_processing", 76 "../modules/audio_processing",
80 "../modules/bitrate_controller", 77 "../modules/bitrate_controller",
81 "../modules/media_file", 78 "../modules/media_file",
82 "../modules/pacing", 79 "../modules/pacing",
83 "../modules/rtp_rtcp", 80 "../modules/rtp_rtcp",
84 "../modules/utility", 81 "../modules/utility",
85 "../rtc_base:rtc_base_approved", 82 "../rtc_base:rtc_base_approved",
86 "../rtc_base:rtc_task_queue", 83 "../rtc_base:rtc_task_queue",
87 "../system_wrappers", 84 "../system_wrappers",
(...skipping 14 matching lines...) Expand all
102 ] 99 ]
103 } 100 }
104 101
105 if (rtc_include_tests) { 102 if (rtc_include_tests) {
106 rtc_test("voice_engine_unittests") { 103 rtc_test("voice_engine_unittests") {
107 deps = [ 104 deps = [
108 ":voice_engine", 105 ":voice_engine",
109 "../common_audio", 106 "../common_audio",
110 "../modules:module_api", 107 "../modules:module_api",
111 "../modules/audio_coding", 108 "../modules/audio_coding",
112 "../modules/audio_conference_mixer",
113 "../modules/audio_device", 109 "../modules/audio_device",
114 "../modules/audio_processing", 110 "../modules/audio_processing",
115 "../modules/media_file", 111 "../modules/media_file",
116 "../modules/rtp_rtcp", 112 "../modules/rtp_rtcp",
117 "../modules/utility", 113 "../modules/utility",
118 "../modules/video_capture:video_capture", 114 "../modules/video_capture:video_capture",
119 "../rtc_base:rtc_base_approved", 115 "../rtc_base:rtc_base_approved",
120 "../rtc_base:rtc_base_tests_utils", 116 "../rtc_base:rtc_base_tests_utils",
121 "../system_wrappers", 117 "../system_wrappers",
122 "../test:test_common", 118 "../test:test_common",
(...skipping 28 matching lines...) Expand all
151 "/wd4373", # Virtual function override. 147 "/wd4373", # Virtual function override.
152 ] 148 ]
153 } 149 }
154 150
155 if (!build_with_chromium && is_clang) { 151 if (!build_with_chromium && is_clang) {
156 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 152 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
157 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 153 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
158 } 154 }
159 } 155 }
160 } 156 }
OLDNEW
« no previous file with comments | « test/mock_voe_channel_proxy.h ('k') | voice_engine/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698