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

Unified Diff: src/build/common.gypi

Issue 195078: Added NVALGRIND define [on by default]. Can be turned off on valgrind slaves ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/
Patch Set: '' Created 11 years, 3 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/buildbot/master.chromium.fyi/master.cfg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/build/common.gypi
===================================================================
--- src/build/common.gypi (revision 26230)
+++ src/build/common.gypi (working copy)
@@ -173,6 +173,7 @@
'mac_debug_optimization%': '0', # Use -O0 unless overridden
'release_extra_cflags%': '',
'debug_extra_cflags%': '',
+ 'release_valgrind_build%': 0,
},
'conditions': [
['branding=="Chrome"', {
@@ -281,6 +282,9 @@
'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ],
},
'conditions': [
+ ['release_valgrind_build==0', {
+ 'defines': ['NVALGRIND'],
+ }],
[ 'OS=="win" and msvs_use_common_release', {
'msvs_props': ['release.vsprops'],
}],
« no previous file with comments | « no previous file | tools/buildbot/master.chromium.fyi/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698