Index: webrtc/media/BUILD.gn |
diff --git a/webrtc/media/BUILD.gn b/webrtc/media/BUILD.gn |
index e2d9217ba8a7978c3271a89c0dd3f9e36c291a0d..68838d6f78313d95e260b0c5e51e370c6cd5bfdc 100644 |
--- a/webrtc/media/BUILD.gn |
+++ b/webrtc/media/BUILD.gn |
@@ -279,7 +279,12 @@ if (rtc_include_tests) { |
# TODO(kjellander): Make the code compile without disabling these flags. |
# See https://bugs.webrtc.org/3307. |
if (is_clang && is_win) { |
- cflags = [ "-Wno-unused-function" ] |
+ cflags = [ |
+ # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6266 |
+ # for -Wno-sign-compare |
+ "-Wno-sign-compare", |
+ "-Wno-unused-function", |
+ ] |
} |
if (!is_win) { |
cflags = [ "-Wno-sign-compare" ] |