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

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

Issue 2705093002: Injectable audio encoders: WebRtcVoiceEngine and company (Closed)
Patch Set: Moved encoder creation up into AudioSendStream, bypassing most of Channel. Created 3 years, 10 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/audio/audio_send_stream.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 10
(...skipping 17 matching lines...) Expand all
28 } 28 }
29 29
30 deps = [ 30 deps = [
31 "..:webrtc_common", 31 "..:webrtc_common",
32 "../api:audio_mixer_api", 32 "../api:audio_mixer_api",
33 "../api:call_api", 33 "../api:call_api",
34 "../base:rtc_base_approved", 34 "../base:rtc_base_approved",
35 "../base:rtc_task_queue", 35 "../base:rtc_task_queue",
36 "../call:call_interfaces", 36 "../call:call_interfaces",
37 "../common_audio", 37 "../common_audio",
38 "../modules/audio_coding:audio_encoder_factory_interface",
39 "../modules/audio_coding:builtin_audio_encoder_factory",
40 "../modules/audio_coding:cng",
38 "../modules/audio_device", 41 "../modules/audio_device",
39 "../modules/audio_processing", 42 "../modules/audio_processing",
40 "../modules/bitrate_controller:bitrate_controller", 43 "../modules/bitrate_controller:bitrate_controller",
41 "../modules/congestion_controller:congestion_controller", 44 "../modules/congestion_controller:congestion_controller",
42 "../modules/pacing:pacing", 45 "../modules/pacing:pacing",
43 "../modules/remote_bitrate_estimator:remote_bitrate_estimator", 46 "../modules/remote_bitrate_estimator:remote_bitrate_estimator",
44 "../modules/rtp_rtcp:rtp_rtcp", 47 "../modules/rtp_rtcp:rtp_rtcp",
45 "../system_wrappers", 48 "../system_wrappers",
46 "../voice_engine", 49 "../voice_engine",
47 ] 50 ]
(...skipping 25 matching lines...) Expand all
73 "utility:utility_tests", 76 "utility:utility_tests",
74 "//testing/gmock", 77 "//testing/gmock",
75 "//testing/gtest", 78 "//testing/gtest",
76 ] 79 ]
77 if (!build_with_chromium && is_clang) { 80 if (!build_with_chromium && is_clang) {
78 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 81 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
79 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 82 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
80 } 83 }
81 } 84 }
82 } 85 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/audio/DEPS » ('j') | webrtc/audio/audio_send_stream.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698