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

Side by Side Diff: webrtc/test/test.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/modules/video_render/video_render.gypi ('k') | webrtc/test/webrtc_test_common.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 # TODO(andrew): consider moving test_support to src/base/test. 9 # TODO(andrew): consider moving test_support to src/base/test.
10 { 10 {
(...skipping 23 matching lines...) Expand all
34 'channel_transport/udp_socket_wrapper.cc', 34 'channel_transport/udp_socket_wrapper.cc',
35 'channel_transport/udp_socket_wrapper.h', 35 'channel_transport/udp_socket_wrapper.h',
36 'channel_transport/udp_socket2_manager_win.cc', 36 'channel_transport/udp_socket2_manager_win.cc',
37 'channel_transport/udp_socket2_manager_win.h', 37 'channel_transport/udp_socket2_manager_win.h',
38 'channel_transport/udp_socket2_win.cc', 38 'channel_transport/udp_socket2_win.cc',
39 'channel_transport/udp_socket2_win.h', 39 'channel_transport/udp_socket2_win.h',
40 'channel_transport/udp_transport.h', 40 'channel_transport/udp_transport.h',
41 'channel_transport/udp_transport_impl.cc', 41 'channel_transport/udp_transport_impl.cc',
42 'channel_transport/udp_transport_impl.h', 42 'channel_transport/udp_transport_impl.h',
43 ], 43 ],
44 'conditions': [
45 ['OS=="win" and clang==1', {
46 'msvs_settings': {
47 'VCCLCompilerTool': {
48 'AdditionalOptions': [
49 # Disable warnings failing when compiling with Clang on Windows.
50 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
51 '-Wno-parentheses-equality',
52 '-Wno-reorder',
53 '-Wno-tautological-constant-out-of-range-compare',
54 '-Wno-unused-private-field',
55 ],
56 },
57 },
58 }],
59 ], # conditions.
44 }, 60 },
45 { 61 {
46 'target_name': 'frame_generator', 62 'target_name': 'frame_generator',
47 'type': 'static_library', 63 'type': 'static_library',
48 'sources': [ 64 'sources': [
49 'frame_generator.cc', 65 'frame_generator.cc',
50 'frame_generator.h', 66 'frame_generator.h',
51 ], 67 ],
52 'dependencies': [ 68 'dependencies': [
53 '<(webrtc_root)/common_video/common_video.gyp:common_video', 69 '<(webrtc_root)/common_video/common_video.gyp:common_video',
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 '../build/isolate.gypi', 258 '../build/isolate.gypi',
243 ], 259 ],
244 'sources': [ 260 'sources': [
245 'test_support_unittests.isolate', 261 'test_support_unittests.isolate',
246 ], 262 ],
247 }, 263 },
248 ], 264 ],
249 }], 265 }],
250 ], 266 ],
251 } 267 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_render/video_render.gypi ('k') | webrtc/test/webrtc_test_common.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698