| 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 11 matching lines...) Expand all Loading... |
| 22 "+webrtc/stream.h", | 22 "+webrtc/stream.h", |
| 23 "+webrtc/transport.h", | 23 "+webrtc/transport.h", |
| 24 "+webrtc/typedefs.h", | 24 "+webrtc/typedefs.h", |
| 25 "+webrtc/video_decoder.h", | 25 "+webrtc/video_decoder.h", |
| 26 "+webrtc/video_encoder.h", | 26 "+webrtc/video_encoder.h", |
| 27 "+webrtc/video_frame.h", | 27 "+webrtc/video_frame.h", |
| 28 "+webrtc/video_receive_stream.h", | 28 "+webrtc/video_receive_stream.h", |
| 29 "+webrtc/video_renderer.h", | 29 "+webrtc/video_renderer.h", |
| 30 "+webrtc/video_send_stream.h", | 30 "+webrtc/video_send_stream.h", |
| 31 | 31 |
| 32 "+WebRTC", |
| 32 "+webrtc/base", | 33 "+webrtc/base", |
| 33 "+webrtc/modules/include", | 34 "+webrtc/modules/include", |
| 34 "+webrtc/test", | 35 "+webrtc/test", |
| 35 "+webrtc/tools", | 36 "+webrtc/tools", |
| 36 ] | 37 ] |
| 37 | 38 |
| 38 # The below rules will be removed when webrtc: is fixed. | 39 # The below rules will be removed when webrtc: is fixed. |
| 39 specific_include_rules = { | 40 specific_include_rules = { |
| 40 "audio_send_stream\.h": [ | 41 "audio_send_stream\.h": [ |
| 41 "+webrtc/modules/audio_coding", | 42 "+webrtc/modules/audio_coding", |
| 42 ], | 43 ], |
| 43 "video_frame\.h": [ | 44 "video_frame\.h": [ |
| 44 "+webrtc/common_video", | 45 "+webrtc/common_video", |
| 45 ], | 46 ], |
| 46 "video_receive_stream\.h": [ | 47 "video_receive_stream\.h": [ |
| 47 "+webrtc/common_video/include", | 48 "+webrtc/common_video/include", |
| 48 "+webrtc/media/base", | 49 "+webrtc/media/base", |
| 49 ], | 50 ], |
| 50 "video_send_stream\.h": [ | 51 "video_send_stream\.h": [ |
| 51 "+webrtc/common_video/include", | 52 "+webrtc/common_video/include", |
| 52 "+webrtc/media/base", | 53 "+webrtc/media/base", |
| 53 ], | 54 ], |
| 54 } | 55 } |
| OLD | NEW |