| Index: webrtc/api/BUILD.gn
|
| diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn
|
| index a1a4a862178fe04d7aea5e82332d23aad2a31c84..2c26724917c989abaa4b0c11e1870ea71552cc90 100644
|
| --- a/webrtc/api/BUILD.gn
|
| +++ b/webrtc/api/BUILD.gn
|
| @@ -301,7 +301,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=6267
|
| + # for -Wno-sign-compare
|
| + "-Wno-sign-compare",
|
| + "-Wno-unused-function",
|
| + ]
|
| }
|
|
|
| if (!is_win) {
|
|
|