This CL contains all the changes made to audio_coding while making audio encoders injectable. Apart from some small changes to webrtcvoiceengine, nothing here is hooked up to the outside world. Those changes will be added to a follow-up CL. BUG=webrtc:5806 Review-Url: https://codereview.webrtc.org/2695243005 Cr-Commit-Position: refs/heads/master@{#17569}
36 lines
930 B
Python
36 lines
930 B
Python
include_rules = [
|
|
"+third_party/libsrtp"
|
|
"+webrtc/api",
|
|
"+webrtc/base",
|
|
"+webrtc/call",
|
|
"+webrtc/common_video/h264",
|
|
"+webrtc/logging/rtc_event_log",
|
|
"+webrtc/logging/rtc_event_log",
|
|
"+webrtc/media",
|
|
"+webrtc/modules/audio_device",
|
|
"+webrtc/modules/rtp_rtcp",
|
|
"+webrtc/modules/video_coding",
|
|
"+webrtc/modules/video_render",
|
|
"+webrtc/p2p",
|
|
"+webrtc/system_wrappers",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"androidtestinitializer\.cc": [
|
|
"+base/android", # Allowed only for Android tests.
|
|
"+webrtc/voice_engine",
|
|
],
|
|
"srtpfilter_unittest\.cc": [
|
|
"+crypto",
|
|
],
|
|
|
|
# TODO(ossu): Remove these exceptions when audio_encoder_factory.h
|
|
# has moved to api/.
|
|
"peerconnectionfactory\.cc": [
|
|
"+webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory.h",
|
|
],
|
|
"peerconnectioninterface_unittest\.cc": [
|
|
"+webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory.h",
|
|
],
|
|
}
|