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

Side by Side Diff: webrtc/audio/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
« no previous file with comments | « no previous file | webrtc/audio/DEPS » ('j') | webrtc/voice_engine/channel.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 if (is_android) { 10 if (is_android) {
(...skipping 21 matching lines...) Expand all
32 } 32 }
33 33
34 deps = [ 34 deps = [
35 "..:webrtc_common", 35 "..:webrtc_common",
36 "../api:audio_mixer_api", 36 "../api:audio_mixer_api",
37 "../api:call_api", 37 "../api:call_api",
38 "../base:rtc_base_approved", 38 "../base:rtc_base_approved",
39 "../base:rtc_task_queue", 39 "../base:rtc_task_queue",
40 "../call:call_interfaces", 40 "../call:call_interfaces",
41 "../common_audio", 41 "../common_audio",
42 "../modules/audio_coding:audio_encoder_factory_interface",
43 "../modules/audio_coding:builtin_audio_encoder_factory",
44 "../modules/audio_coding:cng",
42 "../modules/audio_device", 45 "../modules/audio_device",
43 "../modules/audio_processing", 46 "../modules/audio_processing",
44 "../modules/bitrate_controller:bitrate_controller", 47 "../modules/bitrate_controller:bitrate_controller",
45 "../modules/congestion_controller:congestion_controller", 48 "../modules/congestion_controller:congestion_controller",
46 "../modules/pacing:pacing", 49 "../modules/pacing:pacing",
47 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", 50 "../modules/remote_bitrate_estimator:remote_bitrate_estimator",
48 "../modules/rtp_rtcp:rtp_rtcp", 51 "../modules/rtp_rtcp:rtp_rtcp",
49 "../system_wrappers", 52 "../system_wrappers",
50 "../voice_engine", 53 "../voice_engine",
51 ] 54 ]
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 "//resources/voice_engine/audio_tiny48.wav", 121 "//resources/voice_engine/audio_tiny48.wav",
119 ] 122 ]
120 123
121 if (!build_with_chromium && is_clang) { 124 if (!build_with_chromium && is_clang) {
122 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) 125 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
123 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 126 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
124 } 127 }
125 } 128 }
126 } 129 }
127 } 130 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/audio/DEPS » ('j') | webrtc/voice_engine/channel.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698