Disabling orphan headers presubmit check

It is not working correctly on Windows. I will fix tomorrow morning,
but I prefer to disable it so https://codereview.webrtc.org/2823783002
can land.

BUG=webrtc:7635
NOTRY=True
TBR=kjellander@webrtc.org

Review-Url: https://codereview.webrtc.org/2876043002
Cr-Commit-Position: refs/heads/master@{#18106}
This commit is contained in:
mbonadei
2017-05-11 12:29:26 -07:00
committed by Commit bot
parent a3390f40f6
commit f512c92ab2

View File

@ -575,7 +575,10 @@ def _CommonChecks(input_api, output_api):
results.extend(_CheckJSONParseErrors(input_api, output_api))
results.extend(_RunPythonTests(input_api, output_api))
results.extend(_CheckUsageOfGoogleProtobufNamespace(input_api, output_api))
results.extend(_CheckOrphanHeaders(input_api, output_api))
# Disabling this because it seems to have a bug when running on Windows.
# TODO(mbonadei): fix this and re-enable this check.
# BUG: https://bugs.chromium.org/p/webrtc/issues/detail?id=7635
# results.extend(_CheckOrphanHeaders(input_api, output_api))
return results