OLD | NEW |
1 # Define rules for which include paths are allowed in our source. | 1 # Define rules for which include paths are allowed in our source. |
2 include_rules = [ | 2 include_rules = [ |
3 # Base is only used to build Android APK tests and may not be referenced by | 3 # Base is only used to build Android APK tests and may not be referenced by |
4 # WebRTC production code. | 4 # WebRTC production code. |
5 "-base", | 5 "-base", |
6 "-chromium", | 6 "-chromium", |
7 "+external/webrtc/webrtc", # Android platform build. | 7 "+external/webrtc/webrtc", # Android platform build. |
8 "+gflags", | 8 "+gflags", |
9 "+libyuv", | 9 "+libyuv", |
10 "+testing", | 10 "+testing", |
(...skipping 22 matching lines...) Expand all Loading... |
33 "+webrtc/modules/include", | 33 "+webrtc/modules/include", |
34 "+webrtc/test", | 34 "+webrtc/test", |
35 "+webrtc/tools", | 35 "+webrtc/tools", |
36 ] | 36 ] |
37 | 37 |
38 # The below rules will be removed when webrtc: is fixed. | 38 # The below rules will be removed when webrtc: is fixed. |
39 specific_include_rules = { | 39 specific_include_rules = { |
40 "audio_send_stream\.h": [ | 40 "audio_send_stream\.h": [ |
41 "+webrtc/modules/audio_coding", | 41 "+webrtc/modules/audio_coding", |
42 ], | 42 ], |
| 43 "audio_receive_stream\.h": [ |
| 44 "+webrtc/modules/audio_coding/codecs/audio_decoder_factory.h", |
| 45 ], |
43 "video_frame\.h": [ | 46 "video_frame\.h": [ |
44 "+webrtc/common_video", | 47 "+webrtc/common_video", |
45 ], | 48 ], |
46 "video_receive_stream\.h": [ | 49 "video_receive_stream\.h": [ |
47 "+webrtc/common_video/include", | 50 "+webrtc/common_video/include", |
48 "+webrtc/media/base", | 51 "+webrtc/media/base", |
49 ], | 52 ], |
50 "video_send_stream\.h": [ | 53 "video_send_stream\.h": [ |
51 "+webrtc/common_video/include", | 54 "+webrtc/common_video/include", |
52 "+webrtc/media/base", | 55 "+webrtc/media/base", |
53 ], | 56 ], |
54 } | 57 } |
OLD | NEW |