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

Side by Side Diff: webrtc/modules/video_render/video_render.gypi

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/modules/video_capture/video_capture.gypi ('k') | webrtc/test/test.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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'windows/i_video_render_win.h', 142 'windows/i_video_render_win.h',
143 'windows/video_render_direct3d9.h', 143 'windows/video_render_direct3d9.h',
144 'windows/video_render_windows_impl.h', 144 'windows/video_render_windows_impl.h',
145 'windows/video_render_direct3d9.cc', 145 'windows/video_render_direct3d9.cc',
146 'windows/video_render_windows_impl.cc', 146 'windows/video_render_windows_impl.cc',
147 ], 147 ],
148 'include_dirs': [ 148 'include_dirs': [
149 '<(directx_sdk_path)/Include', 149 '<(directx_sdk_path)/Include',
150 ], 150 ],
151 }], 151 }],
152 ['OS=="win" and clang==1', {
153 'msvs_settings': {
154 'VCCLCompilerTool': {
155 'AdditionalOptions': [
156 # Disable warnings failing when compiling with Clang on Wind ows.
157 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
158 '-Wno-comment',
159 '-Wno-reorder',
160 '-Wno-unused-value',
161 '-Wno-unused-private-field',
162 ],
163 },
164 },
165 }],
152 ] # conditions 166 ] # conditions
153 }, 167 },
154 ], 168 ],
155 }], # build_with_chromium==0 169 }], # build_with_chromium==0
156 ['include_tests==1 and OS!="ios"', { 170 ['include_tests==1 and OS!="ios"', {
157 'targets': [ 171 'targets': [
158 { 172 {
159 # Does not compile on iOS: webrtc:4755. 173 # Does not compile on iOS: webrtc:4755.
160 'target_name': 'video_render_tests', 174 'target_name': 'video_render_tests',
161 'type': 'executable', 175 'type': 'executable',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ], 209 ],
196 }, 210 },
197 }], 211 }],
198 ] # conditions 212 ] # conditions
199 }, # video_render_module_test 213 }, # video_render_module_test
200 ], # targets 214 ], # targets
201 }], # include_tests==1 and OS!=ios 215 }], # include_tests==1 and OS!=ios
202 ], # conditions 216 ], # conditions
203 } 217 }
204 218
OLDNEW
« no previous file with comments | « webrtc/modules/video_capture/video_capture.gypi ('k') | webrtc/test/test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698