Chromium Code Reviews| 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 13 matching lines...) Expand all Loading... | |
| 24 "+webrtc/transport.h", | 24 "+webrtc/transport.h", |
| 25 "+webrtc/typedefs.h", | 25 "+webrtc/typedefs.h", |
| 26 "+webrtc/video_decoder.h", | 26 "+webrtc/video_decoder.h", |
| 27 "+webrtc/video_encoder.h", | 27 "+webrtc/video_encoder.h", |
| 28 "+webrtc/video_frame.h", | 28 "+webrtc/video_frame.h", |
| 29 "+webrtc/video_receive_stream.h", | 29 "+webrtc/video_receive_stream.h", |
| 30 "+webrtc/video_renderer.h", | 30 "+webrtc/video_renderer.h", |
| 31 "+webrtc/video_send_stream.h", | 31 "+webrtc/video_send_stream.h", |
| 32 | 32 |
| 33 "+webrtc/base", | 33 "+webrtc/base", |
| 34 "+webrtc/media", | |
|
kjellander_webrtc
2016/03/18 10:51:33
Please don't add it here. This will make it possib
nisse-webrtc
2016/03/18 11:10:08
What do you suggest I do instead? My understanding
| |
| 34 "+webrtc/modules/include", | 35 "+webrtc/modules/include", |
| 35 "+webrtc/test", | 36 "+webrtc/test", |
| 36 "+webrtc/tools", | 37 "+webrtc/tools", |
| 37 ] | 38 ] |
| 38 | 39 |
| 39 # The below rules will be removed when webrtc: is fixed. | 40 # The below rules will be removed when webrtc: is fixed. |
| 40 specific_include_rules = { | 41 specific_include_rules = { |
| 41 "audio_send_stream\.h": [ | 42 "audio_send_stream\.h": [ |
| 42 "+webrtc/modules/audio_coding", | 43 "+webrtc/modules/audio_coding", |
| 43 ], | 44 ], |
| 44 "video_frame\.h": [ | 45 "video_frame\.h": [ |
| 45 "+webrtc/common_video", | 46 "+webrtc/common_video", |
| 46 ], | 47 ], |
| 47 } | 48 } |
| OLD | NEW |