Files
platform-external-webrtc/api/DEPS
Ivo Creusen 2cb4105224 Moved audioproc_f interface into api directory.
The interface of the audioproc_f tool should be located in the api/ directory, so it becomes visible to the outside world.

Bug: webrtc:8732
Change-Id: Ia7475883aeb0e1f7a6afa5e791204b38dc53a8b8
Reviewed-on: https://webrtc-review.googlesource.com/61801
Commit-Queue: Ivo Creusen <ivoc@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22449}
2018-03-15 12:31:37 +00:00

32 lines
886 B
Python

include_rules = [
"+third_party/libyuv",
"+common_video",
"+media",
"+p2p",
"+pc",
"+logging/rtc_event_log/rtc_event_log_factory_interface.h",
"+modules/audio_processing/include",
]
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",
],
}