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

Unified Diff: build/common.gypi

Issue 25875004: Roll Clang 188423:191856. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable MultiThreadedCertVerifierTest.CancelRequestThenQuit for LSan Created 7 years, 2 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 | « base/security_unittest.cc ('k') | net/cert/multi_threaded_cert_verifier_unittest.cc » ('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 f9d2ca0ad8be559af01149becf8be2db7a505f89..ef1c209253a439287004e6581188876f961a4984 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -3135,6 +3135,10 @@
'-fuse-ld=gold',
'-Wno-psabi',
],
+ 'ldflags!': [
+ # Clang does not support the following options.
+ '-fuse-ld=gold',
+ ],
}],
],
}],
@@ -3219,6 +3223,12 @@
# code generated by flex (used in angle) contains that keyword.
# http://crbug.com/255186
'-Wno-deprecated-register',
+
+ # TODO(hans): Remove once we've cleaned up the warnings.
+ '-Wno-unused-const-variable',
+
+ # This warns about auto_ptr<>, used in third-party code.
+ '-Wno-deprecated-declarations',
],
'cflags!': [
# Clang doesn't seem to know know this flag.
@@ -3922,6 +3932,12 @@
# code generated by flex (used in angle) contains that keyword.
# http://crbug.com/255186
'-Wno-deprecated-register',
+
+ # TODO(hans): Remove once we've cleaned up the warnings.
+ '-Wno-unused-const-variable',
+
+ # This warns about auto_ptr<>, used in third-party code.
+ '-Wno-deprecated-declarations',
],
}],
['clang==1 and clang_use_chrome_plugins==1', {
« no previous file with comments | « base/security_unittest.cc ('k') | net/cert/multi_threaded_cert_verifier_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698