2016-03-17 12:05:36 +01:00
|
|
|
include_rules = [
|
|
|
|
|
"+third_party/libyuv",
|
2017-09-15 06:47:31 +02:00
|
|
|
"+common_video",
|
|
|
|
|
"+media",
|
|
|
|
|
"+p2p",
|
|
|
|
|
"+pc",
|
2018-02-14 12:20:13 +01:00
|
|
|
"+logging/rtc_event_log/rtc_event_log_factory_interface.h",
|
2018-03-15 12:22:52 +01:00
|
|
|
"+modules/audio_processing/include",
|
2018-06-12 11:15:56 +02:00
|
|
|
"+system_wrappers/include",
|
2016-03-17 12:05:36 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
specific_include_rules = {
|
2017-06-30 04:23:22 -07:00
|
|
|
# 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": [
|
2017-09-15 06:47:31 +02:00
|
|
|
"+modules/audio_coding/codecs/opus/audio_encoder_opus.h",
|
2017-06-30 04:23:22 -07:00
|
|
|
],
|
|
|
|
|
|
2017-02-10 08:15:44 -08:00
|
|
|
# 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": [
|
2017-09-15 06:47:31 +02:00
|
|
|
"+modules/audio_coding",
|
2018-02-27 13:58:45 +01:00
|
|
|
"+modules/audio_processing",
|
2018-05-22 13:34:14 +02:00
|
|
|
"+modules/video_coding",
|
2017-01-31 01:48:08 -08:00
|
|
|
],
|
2016-03-17 12:05:36 +01:00
|
|
|
}
|