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

Unified Diff: build/common.gypi

Issue 8953033: Do not pass the deprecated -fasan flag in the asan=1 mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 114969)
+++ build/common.gypi (working copy)
@@ -1976,15 +1976,11 @@
],
}],
['asan==1', {
- # TODO(glider): -fasan is deprecated. Remove it when we stop using
- # it.
'cflags': [
- '-fasan',
'-faddress-sanitizer',
'-w',
],
'ldflags': [
- '-fasan',
'-faddress-sanitizer',
],
'defines': [
@@ -2339,12 +2335,10 @@
['asan==1', {
'xcode_settings': {
'OTHER_CFLAGS': [
- '-fasan',
'-faddress-sanitizer',
'-w',
],
'OTHER_LDFLAGS': [
- '-fasan',
'-faddress-sanitizer',
# The symbols below are referenced in the ASan runtime
# library (compiled on OS X 10.6), but may be unavailable
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698