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