OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+webrtc/audio", | 2 "+webrtc/audio", |
3 "+webrtc/base", | 3 "+webrtc/base", |
4 "+webrtc/logging/rtc_event_log", | 4 "+webrtc/logging/rtc_event_log", |
5 "+webrtc/modules/audio_coding", | 5 "+webrtc/modules/audio_coding", |
6 "+webrtc/modules/audio_device", | 6 "+webrtc/modules/audio_device", |
7 "+webrtc/modules/audio_mixer", | 7 "+webrtc/modules/audio_mixer", |
8 "+webrtc/modules/audio_processing", | 8 "+webrtc/modules/audio_processing", |
9 "+webrtc/modules/bitrate_controller", | 9 "+webrtc/modules/bitrate_controller", |
10 "+webrtc/modules/congestion_controller", | 10 "+webrtc/modules/congestion_controller", |
11 "+webrtc/modules/pacing", | 11 "+webrtc/modules/pacing", |
12 "+webrtc/modules/rtp_rtcp", | 12 "+webrtc/modules/rtp_rtcp", |
13 "+webrtc/modules/utility", | 13 "+webrtc/modules/utility", |
14 "+webrtc/system_wrappers", | 14 "+webrtc/system_wrappers", |
15 "+webrtc/voice_engine", | 15 "+webrtc/voice_engine", |
16 "+webrtc/video", | 16 "+webrtc/video", |
17 ] | 17 ] |
| 18 |
| 19 specific_include_rules = { |
| 20 "video_receive_stream\.h": [ |
| 21 "+webrtc/common_video/include", |
| 22 "+webrtc/media/base", |
| 23 ], |
| 24 "video_send_stream\.h": [ |
| 25 "+webrtc/common_video/include", |
| 26 "+webrtc/media/base", |
| 27 ], |
| 28 } |
OLD | NEW |