kjellander@webrtc.org | 94a23f0 | 2016-03-17 11:05:36 | [diff] [blame] | 1 | include_rules = [ |
| 2 | "+third_party/libyuv", |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 3 | "+common_video", |
| 4 | "+media", |
| 5 | "+p2p", |
| 6 | "+pc", |
Niels Möller | 8366e17 | 2018-02-14 11:20:13 | [diff] [blame] | 7 | "+logging/rtc_event_log/rtc_event_log_factory_interface.h", |
kjellander@webrtc.org | 94a23f0 | 2016-03-17 11:05:36 | [diff] [blame] | 8 | ] |
| 9 | |
| 10 | specific_include_rules = { |
kwiberg | 96da011 | 2017-06-30 11:23:22 | [diff] [blame] | 11 | # Needed because AudioEncoderOpus is in the wrong place for |
| 12 | # backwards compatibilty reasons. See |
| 13 | # https://bugs.chromium.org/p/webrtc/issues/detail?id=7847 |
| 14 | "audio_encoder_opus\.h": [ |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 15 | "+modules/audio_coding/codecs/opus/audio_encoder_opus.h", |
kwiberg | 96da011 | 2017-06-30 11:23:22 | [diff] [blame] | 16 | ], |
| 17 | |
kwiberg | 087bd34 | 2017-02-10 16:15:44 | [diff] [blame] | 18 | # We allow .cc files in webrtc/api/ to #include a bunch of stuff |
| 19 | # that's off-limits for the .h files. That's because .h files leak |
| 20 | # their #includes to whoever's #including them, but .cc files do not |
| 21 | # since no one #includes them. |
| 22 | ".*\.cc": [ |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 23 | "+modules/audio_coding", |
kwiberg | 1e4e8cb | 2017-01-31 09:48:08 | [diff] [blame] | 24 | ], |
Mirko Bonadei | 9c66aee | 2017-09-14 14:26:07 | [diff] [blame] | 25 | |
| 26 | ".*i420_buffer\.h": [ |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 27 | "+system_wrappers/include/aligned_malloc.h", |
Mirko Bonadei | 9c66aee | 2017-09-14 14:26:07 | [diff] [blame] | 28 | ], |
Ivo Creusen | 56d46090 | 2017-11-24 16:29:59 | [diff] [blame] | 29 | |
| 30 | # Needed to use the APM statistics. |
| 31 | "mediastreaminterface.h": [ |
| 32 | "+modules/audio_processing/include/audio_processing_statistics.h", |
| 33 | ], |
kjellander@webrtc.org | 94a23f0 | 2016-03-17 11:05:36 | [diff] [blame] | 34 | } |