webrtc/api/DEPS
Gustaf Ullberg 0efa941d2f Move EchoCanceller3Factory to api/auido
The AEC3 factory is now part of the WebRTC API.

Bug: webrtc:8844
Change-Id: If6f419b4ca0354e2d346c0e6474086e456ba747e
Reviewed-on: https://webrtc-review.googlesource.com/57141
Commit-Queue: Gustaf Ullberg <gustaf@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Alex Loiko <aleloi@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22204}
2018-02-27 14:09:59 +00:00

35 lines
992 B
Python

include_rules = [
"+third_party/libyuv",
"+common_video",
"+media",
"+p2p",
"+pc",
"+logging/rtc_event_log/rtc_event_log_factory_interface.h",
]
specific_include_rules = {
# Needed because AudioEncoderOpus is in the wrong place for
# backwards compatibilty reasons. See
# https://bugs.chromium.org/p/webrtc/issues/detail?id=7847
"audio_encoder_opus\.h": [
"+modules/audio_coding/codecs/opus/audio_encoder_opus.h",
],
# We allow .cc files in webrtc/api/ to #include a bunch of stuff
# that's off-limits for the .h files. That's because .h files leak
# their #includes to whoever's #including them, but .cc files do not
# since no one #includes them.
".*\.cc": [
"+modules/audio_coding",
"+modules/audio_processing",
],
".*i420_buffer\.h": [
"+system_wrappers/include/aligned_malloc.h",
],
# Needed to use the APM statistics.
"mediastreaminterface.h": [
"+modules/audio_processing/include/audio_processing_statistics.h",
],
}