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

Unified Diff: build/common.gypi

Issue 12220089: Roll Clang r170392:r174491. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for realz Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/clang/scripts/update.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 63a569c7e2b28ac5873c8f276658b18b51ebfd28..2c433bceaa0db45345dec1c574e64b0f86c03613 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2787,6 +2787,10 @@
# Warns on switches on enums that cover all enum values but
# also contain a default: branch. Chrome is full of that.
'-Wno-covered-switch-default',
+
+ # TODO(thakis,hans): Remove once Clang doesn't warn about false
+ # positives in our code.
+ '-Wno-undefined-internal',
],
'cflags!': [
# Clang doesn't seem to know know this flag.
@@ -3371,6 +3375,10 @@
# Warns on switches on enums that cover all enum values but
# also contain a default: branch. Chrome is full of that.
'-Wno-covered-switch-default',
+
+ # TODO(thakis,hans): Remove once Clang doesn't warn about false
+ # positives in our code.
+ '-Wno-undefined-internal',
],
'OTHER_CPLUSPLUSFLAGS': [
# gnu++11 instead of c++11 so that __ANSI_C__ doesn't get
« no previous file with comments | « no previous file | tools/clang/scripts/update.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698