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

Side by Side Diff: webrtc/base/base_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 unified diff | Download patch
« no previous file with comments | « webrtc/base/base.gyp ('k') | webrtc/modules/audio_coding/codecs/isac/isac_test.gypi » ('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) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 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 'includes': [ '../build/common.gypi', ], 9 'includes': [ '../build/common.gypi', ],
10 'targets': [ 10 'targets': [
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 'win32regkey_unittest.cc', 127 'win32regkey_unittest.cc',
128 'win32window_unittest.cc', 128 'win32window_unittest.cc',
129 'win32windowpicker_unittest.cc', 129 'win32windowpicker_unittest.cc',
130 'winfirewall_unittest.cc', 130 'winfirewall_unittest.cc',
131 ], 131 ],
132 'sources!': [ 132 'sources!': [
133 # TODO(pbos): Reenable this test. 133 # TODO(pbos): Reenable this test.
134 'win32windowpicker_unittest.cc', 134 'win32windowpicker_unittest.cc',
135 ], 135 ],
136 }], 136 }],
137 ['OS=="win" and clang==1', {
138 'msvs_settings': {
139 'VCCLCompilerTool': {
140 'AdditionalOptions': [
141 # Disable warnings failing when compiling with Clang on Window s.
142 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
143 '-Wno-missing-braces',
144 '-Wno-unused-const-variable',
145 ],
146 },
147 },
148 }],
137 ['OS=="mac"', { 149 ['OS=="mac"', {
138 'sources': [ 150 'sources': [
139 'macutils_unittest.cc', 151 'macutils_unittest.cc',
140 ], 152 ],
141 }], 153 }],
142 ['os_posix==1', { 154 ['os_posix==1', {
143 'sources': [ 155 'sources': [
144 'ssladapter_unittest.cc', 156 'ssladapter_unittest.cc',
145 'sslidentity_unittest.cc', 157 'sslidentity_unittest.cc',
146 'sslstreamadapter_unittest.cc', 158 'sslstreamadapter_unittest.cc',
147 ], 159 ],
148 }], 160 }],
149 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { 161 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
150 'defines': [ 162 'defines': [
151 'CARBON_DEPRECATED=YES', 163 'CARBON_DEPRECATED=YES',
152 ], 164 ],
153 }], 165 }],
154 ], # conditions 166 ], # conditions
155 }, 167 },
156 }, 168 },
157 ], 169 ],
158 } 170 }
OLDNEW
« no previous file with comments | « webrtc/base/base.gyp ('k') | webrtc/modules/audio_coding/codecs/isac/isac_test.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698