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

Side by Side Diff: third_party/winsdk_samples/winsdk_samples.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 unified diff | Download patch
« no previous file with comments | « talk/libjingle_tests.gyp ('k') | webrtc/base/base.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 '<(baseclasses_dir)/winctrl.h', 78 '<(baseclasses_dir)/winctrl.h',
79 '<(baseclasses_dir)/winutil.cpp', 79 '<(baseclasses_dir)/winutil.cpp',
80 '<(baseclasses_dir)/winutil.h', 80 '<(baseclasses_dir)/winutil.h',
81 '<(baseclasses_dir)/wxdebug.cpp', 81 '<(baseclasses_dir)/wxdebug.cpp',
82 '<(baseclasses_dir)/wxdebug.h', 82 '<(baseclasses_dir)/wxdebug.h',
83 '<(baseclasses_dir)/wxlist.cpp', 83 '<(baseclasses_dir)/wxlist.cpp',
84 '<(baseclasses_dir)/wxlist.h', 84 '<(baseclasses_dir)/wxlist.h',
85 '<(baseclasses_dir)/wxutil.cpp', 85 '<(baseclasses_dir)/wxutil.cpp',
86 '<(baseclasses_dir)/wxutil.h', 86 '<(baseclasses_dir)/wxutil.h',
87 ], 87 ],
88 'conditions': [
89 ['clang==1', {
90 'msvs_settings': {
91 'VCCLCompilerTool': {
92 'AdditionalOptions': [
93 # Disable warnings failing when compiling with Clang on Windows.
94 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
95 '-Wno-comment',
96 '-Wno-delete-non-virtual-dtor',
97 '-Wno-ignored-attributes',
98 '-Wno-logical-op-parentheses',
99 '-Wno-non-pod-varargs',
100 '-Wno-microsoft-extra-qualification',
101 '-Wno-missing-braces',
102 '-Wno-overloaded-virtual',
103 '-Wno-parentheses',
104 '-Wno-reorder',
105 '-Wno-string-conversion',
106 '-Wno-tautological-constant-out-of-range-compare',
107 '-Wno-unused-private-field',
108 '-Wno-writable-strings',
109 ],
110 },
111 },
112 },],
113 ], # conditions.
88 }, 114 },
89 ], 115 ],
90 } 116 }
OLDNEW
« no previous file with comments | « talk/libjingle_tests.gyp ('k') | webrtc/base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698