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

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

Issue 2705093002: Injectable audio encoders: WebRtcVoiceEngine and company (Closed)
Patch Set: Channel::GetSendCodec asks both its acm and its codec manager. Created 3 years, 7 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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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 10 matching lines...) Expand all
21 "syncable.h", 21 "syncable.h",
22 ] 22 ]
23 deps = [ 23 deps = [
24 "..:webrtc_common", 24 "..:webrtc_common",
25 "../api:audio_mixer_api", 25 "../api:audio_mixer_api",
26 "../api:libjingle_peerconnection_api", 26 "../api:libjingle_peerconnection_api",
27 "../api:transport_api", 27 "../api:transport_api",
28 "../api/audio_codecs:audio_codecs_api", 28 "../api/audio_codecs:audio_codecs_api",
29 "../base:rtc_base", 29 "../base:rtc_base",
30 "../base:rtc_base_approved", 30 "../base:rtc_base_approved",
31 "../modules/audio_coding:audio_encoder_factory_interface",
31 "../modules/audio_coding:audio_encoder_interface", 32 "../modules/audio_coding:audio_encoder_interface",
32 ] 33 ]
33 } 34 }
34 35
35 rtc_static_library("call") { 36 rtc_static_library("call") {
36 sources = [ 37 sources = [
37 "bitrate_allocator.cc", 38 "bitrate_allocator.cc",
38 "call.cc", 39 "call.cc",
39 "flexfec_receive_stream_impl.cc", 40 "flexfec_receive_stream_impl.cc",
40 "flexfec_receive_stream_impl.h", 41 "flexfec_receive_stream_impl.h",
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 "call_perf_tests.cc", 124 "call_perf_tests.cc",
124 "rampup_tests.cc", 125 "rampup_tests.cc",
125 "rampup_tests.h", 126 "rampup_tests.h",
126 ] 127 ]
127 deps = [ 128 deps = [
128 ":call_interfaces", 129 ":call_interfaces",
129 "..:webrtc_common", 130 "..:webrtc_common",
130 "../base:rtc_base_approved", 131 "../base:rtc_base_approved",
131 "../logging:rtc_event_log_api", 132 "../logging:rtc_event_log_api",
132 "../modules/audio_coding", 133 "../modules/audio_coding",
134 "../modules/audio_coding:builtin_audio_encoder_factory",
133 "../modules/audio_mixer:audio_mixer_impl", 135 "../modules/audio_mixer:audio_mixer_impl",
134 "../modules/rtp_rtcp", 136 "../modules/rtp_rtcp",
135 "../system_wrappers", 137 "../system_wrappers",
136 "../system_wrappers:metrics_default", 138 "../system_wrappers:metrics_default",
137 "../test:direct_transport", 139 "../test:direct_transport",
138 "../test:fake_audio_device", 140 "../test:fake_audio_device",
139 "../test:test_support", 141 "../test:test_support",
140 "../test:video_test_common", 142 "../test:video_test_common",
141 "../video", 143 "../video",
142 "../voice_engine", 144 "../voice_engine",
143 "//testing/gtest", 145 "//testing/gtest",
144 "//webrtc/test:field_trial", 146 "//webrtc/test:field_trial",
145 "//webrtc/test:test_common", 147 "//webrtc/test:test_common",
146 ] 148 ]
147 if (!build_with_chromium && is_clang) { 149 if (!build_with_chromium && is_clang) {
148 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 150 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
149 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 151 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
150 } 152 }
151 } 153 }
152 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698