OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+third_party/libyuv", | 2 "+third_party/libyuv", |
3 "+webrtc/base", | |
4 "+webrtc/common_video", | 3 "+webrtc/common_video", |
5 "+webrtc/media", | 4 "+webrtc/media", |
6 "+webrtc/p2p", | 5 "+webrtc/p2p", |
7 "+webrtc/pc", | 6 "+webrtc/pc", |
8 ] | 7 ] |
9 | 8 |
10 specific_include_rules = { | 9 specific_include_rules = { |
11 "peerconnection_jni\.cc": [ | 10 "peerconnection_jni\.cc": [ |
12 "+webrtc/voice_engine", | 11 "+webrtc/voice_engine", |
13 ], | 12 ], |
(...skipping 15 matching lines...) Expand all Loading... |
29 ], | 28 ], |
30 | 29 |
31 # We allow .cc files in webrtc/api/ to #include a bunch of stuff | 30 # We allow .cc files in webrtc/api/ to #include a bunch of stuff |
32 # that's off-limits for the .h files. That's because .h files leak | 31 # that's off-limits for the .h files. That's because .h files leak |
33 # their #includes to whoever's #including them, but .cc files do not | 32 # their #includes to whoever's #including them, but .cc files do not |
34 # since no one #includes them. | 33 # since no one #includes them. |
35 ".*\.cc": [ | 34 ".*\.cc": [ |
36 "+webrtc/modules/audio_coding", | 35 "+webrtc/modules/audio_coding", |
37 ], | 36 ], |
38 } | 37 } |
OLD | NEW |