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

Side by Side Diff: webrtc/audio/DEPS

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 include_rules = [ 1 include_rules = [
2 "+webrtc/base", 2 "+webrtc/base",
3 "+webrtc/call", 3 "+webrtc/call",
4 "+webrtc/common_audio", 4 "+webrtc/common_audio",
5 "+webrtc/logging/rtc_event_log", 5 "+webrtc/logging/rtc_event_log",
6 "+webrtc/modules/audio_coding", 6 "+webrtc/modules/audio_coding",
7 "+webrtc/modules/audio_device", 7 "+webrtc/modules/audio_device",
8 "+webrtc/modules/audio_mixer", 8 "+webrtc/modules/audio_mixer",
9 "+webrtc/modules/audio_processing/include", 9 "+webrtc/modules/audio_processing/include",
10 "+webrtc/modules/bitrate_controller", 10 "+webrtc/modules/bitrate_controller",
11 "+webrtc/modules/congestion_controller", 11 "+webrtc/modules/congestion_controller",
12 "+webrtc/modules/pacing", 12 "+webrtc/modules/pacing",
13 "+webrtc/modules/remote_bitrate_estimator", 13 "+webrtc/modules/remote_bitrate_estimator",
14 "+webrtc/modules/rtp_rtcp", 14 "+webrtc/modules/rtp_rtcp",
15 "+webrtc/system_wrappers", 15 "+webrtc/system_wrappers",
16 "+webrtc/voice_engine", 16 "+webrtc/voice_engine",
17 ] 17 ]
18
19 specific_include_rules = {
20 "audio_send_stream.cc": [
21 "+webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h",
22 ],
23 # TODO(ossu): Remove this exception when builtin_audio_encoder_factory.h
24 # has moved to api/, or when the proper mocks have been made.
25 "audio_send_stream_unittest.cc": [
26 "+webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory.h",
27 ],
28 }
29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698