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

Side by Side Diff: third_party/winsdk_samples/winsdk_samples.gyp

Issue 1593713013: Roll chromium_revision 7a4fb8d..f527e86 (370025:370073) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Fix/disable Win Clang warnings Created 4 years, 11 months 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
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 '-Wno-overloaded-virtual', 102 '-Wno-overloaded-virtual',
103 '-Wno-parentheses', 103 '-Wno-parentheses',
104 '-Wno-reorder', 104 '-Wno-reorder',
105 '-Wno-string-conversion', 105 '-Wno-string-conversion',
106 '-Wno-tautological-constant-out-of-range-compare', 106 '-Wno-tautological-constant-out-of-range-compare',
107 '-Wno-unused-private-field', 107 '-Wno-unused-private-field',
108 '-Wno-writable-strings', 108 '-Wno-writable-strings',
109 ], 109 ],
110 }, 110 },
111 }, 111 },
112 'direct_dependent_settings': {
113 'msvs_settings': {
114 'VCCLCompilerTool': {
115 'AdditionalOptions': [
116 # Disable warnings failing when compiling with Clang on Window s.
117 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
118 '-Wno-ignored-qualifiers',
119 ],
120 },
121 },
122 },
112 },], 123 },],
113 ], # conditions. 124 ], # conditions.
114 }, 125 },
115 ], 126 ],
116 } 127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698