diff options
author | hans <hans@chromium.org> | 2014-09-29 11:51:09 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-29 18:51:26 +0000 |
commit | a391bbc3a20480c1d16fb7b8b51654413023c1c5 (patch) | |
tree | a41e384c8925bcd07d0914cbc7f3475cd4606dd5 /build | |
parent | a772c842fc3107346666ba7884e2d062fa6a5537 (diff) | |
download | chromium_src-a391bbc3a20480c1d16fb7b8b51654413023c1c5.zip chromium_src-a391bbc3a20480c1d16fb7b8b51654413023c1c5.tar.gz chromium_src-a391bbc3a20480c1d16fb7b8b51654413023c1c5.tar.bz2 |
Roll Clang 216630:217949 (try 2)
The previous attempt was reverted due to a Valgrind false positive
that's now suppressed.
BUG=410810,418234
TBR=thakis
Review URL: https://codereview.chromium.org/612093003
Cr-Commit-Position: refs/heads/master@{#297218}
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 3 | ||||
-rw-r--r-- | build/config/compiler/BUILD.gn | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index a589b08..dc0f525 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -2504,6 +2504,9 @@ # code generated by flex (used in angle) contains that keyword. # http://crbug.com/255186 '-Wno-deprecated-register', + + # TODO(hans): Clean this up. Or disable with finer granularity. + '-Wno-unused-local-typedef', ], }, 'includes': [ 'set_clang_warning_flags.gypi', ], diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn index 599490d..42c254c 100644 --- a/build/config/compiler/BUILD.gn +++ b/build/config/compiler/BUILD.gn @@ -726,6 +726,9 @@ config("default_warnings") { # TODO(thakis): Remove, http://crbug.com/263960 "-Wno-reserved-user-defined-literal", + + # TODO(hans): Clean this up. Or disable with finer granularity. + "-Wno-unused-local-typedef", ] } if (gcc_version >= 48) { |