| 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 26 matching lines...) Expand all Loading... |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 # The below rules will be removed when webrtc: is fixed. | 39 # The below rules will be removed when webrtc: is fixed. |
| 40 specific_include_rules = { | 40 specific_include_rules = { |
| 41 "audio_send_stream\.h": [ | 41 "audio_send_stream\.h": [ |
| 42 "+webrtc/modules/audio_coding", | 42 "+webrtc/modules/audio_coding", |
| 43 ], | 43 ], |
| 44 "video_frame\.h": [ | 44 "video_frame\.h": [ |
| 45 "+webrtc/common_video", | 45 "+webrtc/common_video", |
| 46 ], | 46 ], |
| 47 "video_renderer\.h": [ | 47 "video_receive_stream\.h": [ |
| 48 "+webrtc/media/base", |
| 49 ], |
| 50 "video_send_stream\.h": [ |
| 48 "+webrtc/media/base", | 51 "+webrtc/media/base", |
| 49 ], | 52 ], |
| 50 } | 53 } |
| OLD | NEW |