| Index: webrtc/test/test.gyp
|
| diff --git a/webrtc/test/test.gyp b/webrtc/test/test.gyp
|
| index 0af17f793b1172d217449fc7ddd614bb7e36d65c..f7a5a42c7b3ca187b4cc951205436a3a5d389541 100644
|
| --- a/webrtc/test/test.gyp
|
| +++ b/webrtc/test/test.gyp
|
| @@ -41,6 +41,22 @@
|
| 'channel_transport/udp_transport_impl.cc',
|
| 'channel_transport/udp_transport_impl.h',
|
| ],
|
| + 'conditions': [
|
| + ['OS=="win" and clang==1', {
|
| + 'msvs_settings': {
|
| + 'VCCLCompilerTool': {
|
| + 'AdditionalOptions': [
|
| + # Disable warnings failing when compiling with Clang on Windows.
|
| + # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
|
| + '-Wno-parentheses-equality',
|
| + '-Wno-reorder',
|
| + '-Wno-tautological-constant-out-of-range-compare',
|
| + '-Wno-unused-private-field',
|
| + ],
|
| + },
|
| + },
|
| + }],
|
| + ], # conditions.
|
| },
|
| {
|
| 'target_name': 'frame_generator',
|
|
|