Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "+third_party/ffmpeg", | 2 "+third_party/ffmpeg", |
| 3 "+third_party/openh264", | 3 "+third_party/openh264", |
| 4 "+vpx", | 4 "+vpx", |
| 5 "+webrtc/base", | 5 "+webrtc/base", |
| 6 "+webrtc/common_video", | 6 "+webrtc/common_video", |
| 7 "+webrtc/media/base", | 7 "+webrtc/media/base", |
| 8 "+webrtc/system_wrappers", | 8 "+webrtc/system_wrappers", |
| 9 "+webrtc/tools", | 9 "+webrtc/tools", |
| 10 ] | 10 ] |
| 11 | |
| 12 specific_include_rules = { | |
| 13 "android_test_initializer\.cc": [ | |
|
kjellander_webrtc
2017/02/14 11:00:15
Don't you need the codecs/test/ in the path? Maybe
brandtr
2017/02/14 14:22:37
Without that prefix, 'git cl presubmit' passes, bu
kjellander_webrtc
2017/02/14 14:30:13
I see. It doesn't take the path into account then
| |
| 14 "+base/android", | |
| 15 "+webrtc/sdk", | |
| 16 ], | |
| 17 "videoprocessor_integrationtest\.h": [ | |
|
kjellander_webrtc
2017/02/14 11:00:15
I'd recommend ".*test\.cc" instead. It would avoid
brandtr
2017/02/14 14:22:37
Done. In order to get it to pass, I had to do ".*t
kjellander_webrtc
2017/02/14 14:30:13
Hmm,
By looking at other examples (https://cs.chr
brandtr
2017/02/14 14:34:20
It did. Thanks!
| |
| 18 "+webrtc/media/engine", | |
| 19 "+webrtc/sdk", | |
| 20 ], | |
| 21 } | |
| OLD | NEW |