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

Side by Side Diff: webrtc/build/common.gypi

Issue 1921653002: Enable -Winconsistent-missing-override flag. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 7 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
« no previous file with comments | « webrtc/base/sslstreamadapter_unittest.cc ('k') | webrtc/call/call_perf_tests.cc » ('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 # This file contains common settings for building WebRTC components. 9 # This file contains common settings for building WebRTC components.
10 10
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 'cflags_cc': [ 302 'cflags_cc': [
303 '-Wnon-virtual-dtor', 303 '-Wnon-virtual-dtor',
304 # This is enabled for clang; enable for gcc as well. 304 # This is enabled for clang; enable for gcc as well.
305 '-Woverloaded-virtual', 305 '-Woverloaded-virtual',
306 ], 306 ],
307 }], 307 }],
308 ['clang==1', { 308 ['clang==1', {
309 'cflags': [ 309 'cflags': [
310 '-Wimplicit-fallthrough', 310 '-Wimplicit-fallthrough',
311 '-Wthread-safety', 311 '-Wthread-safety',
312 '-Winconsistent-missing-override',
312 ], 313 ],
313 }], 314 }],
314 ], 315 ],
315 }], 316 }],
316 ['target_arch=="arm64"', { 317 ['target_arch=="arm64"', {
317 'defines': [ 318 'defines': [
318 'WEBRTC_ARCH_ARM64', 319 'WEBRTC_ARCH_ARM64',
319 'WEBRTC_HAS_NEON', 320 'WEBRTC_HAS_NEON',
320 ], 321 ],
321 }], 322 }],
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 # For access to standard POSIXish features, use WEBRTC_POSIX instead 499 # For access to standard POSIXish features, use WEBRTC_POSIX instead
499 # of a more specific macro. 500 # of a more specific macro.
500 'defines': [ 501 'defines': [
501 'WEBRTC_POSIX', 502 'WEBRTC_POSIX',
502 ], 503 ],
503 }], 504 }],
504 ], 505 ],
505 }, 506 },
506 }, # target_defaults 507 }, # target_defaults
507 } 508 }
OLDNEW
« no previous file with comments | « webrtc/base/sslstreamadapter_unittest.cc ('k') | webrtc/call/call_perf_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698