OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+webrtc/base", | 2 "+webrtc/base", |
3 "+webrtc/call", | 3 "+webrtc/call", |
4 "+webrtc/common_audio", | 4 "+webrtc/common_audio", |
5 "+webrtc/logging/rtc_event_log", | 5 "+webrtc/logging/rtc_event_log", |
6 "+webrtc/modules/audio_coding", | 6 "+webrtc/modules/audio_coding", |
7 "+webrtc/modules/audio_device", | 7 "+webrtc/modules/audio_device", |
8 "+webrtc/modules/audio_mixer", | 8 "+webrtc/modules/audio_mixer", |
9 "+webrtc/modules/audio_processing/include", | 9 "+webrtc/modules/audio_processing/include", |
10 "+webrtc/modules/bitrate_controller", | 10 "+webrtc/modules/bitrate_controller", |
11 "+webrtc/modules/congestion_controller", | 11 "+webrtc/modules/congestion_controller", |
12 "+webrtc/modules/pacing", | 12 "+webrtc/modules/pacing", |
13 "+webrtc/modules/remote_bitrate_estimator", | 13 "+webrtc/modules/remote_bitrate_estimator", |
14 "+webrtc/modules/rtp_rtcp", | 14 "+webrtc/modules/rtp_rtcp", |
15 "+webrtc/system_wrappers", | 15 "+webrtc/system_wrappers", |
16 "+webrtc/voice_engine", | 16 "+webrtc/voice_engine", |
17 ] | 17 ] |
| 18 |
| 19 specific_include_rules = { |
| 20 "audio_send_stream.cc": [ |
| 21 "+webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h", |
| 22 ], |
| 23 # TODO(ossu): Remove this exception when builtin_audio_encoder_factory.h |
| 24 # has moved to api/, or when the proper mocks have been made. |
| 25 "audio_send_stream_unittest.cc": [ |
| 26 "+webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory.h", |
| 27 ], |
| 28 } |
| 29 |
OLD | NEW |