Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1598)

Unified Diff: talk/libjingle_tests.gyp

Issue 1522223002: Disable warnings failing when using Clang on Windows (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rolled winsdk_samples Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | third_party/winsdk_samples/winsdk_samples.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/libjingle_tests.gyp
diff --git a/talk/libjingle_tests.gyp b/talk/libjingle_tests.gyp
index 511f7d5ffc6cc3bac5fa5abe3bb476db9ca7b684..e7b354b126b1e07bba8ea1b22a14e2af6fa3af12 100755
--- a/talk/libjingle_tests.gyp
+++ b/talk/libjingle_tests.gyp
@@ -128,6 +128,17 @@
},
},
}],
+ ['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-unused-function',
+ ],
+ },
+ },
+ },],
['OS=="ios"', {
'sources!': [
'media/sctp/sctpdataengine_unittest.cc',
@@ -240,6 +251,17 @@
'GTEST_HAS_TR1_TUPLE=1',
],
}],
+ ['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-unused-function',
+ ],
+ },
+ },
+ }],
],
}, # target libjingle_peerconnection_unittest
],
« no previous file with comments | « DEPS ('k') | third_party/winsdk_samples/winsdk_samples.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698