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

Unified Diff: gni/isolate.gni

Issue 2592663004: [test] Add back lsan leak detection (Closed)
Patch Set: Add suppressions Created 3 years, 11 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 | gypfiles/isolate.gypi » ('j') | tools/memory/lsan/suppressions.txt » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gni/isolate.gni
diff --git a/gni/isolate.gni b/gni/isolate.gni
index 3906cf60ef93453cdbdd32ef10e492a85c5bd156..a347eeaa24e1baaacf836b1b801bddcd07c47c0d 100644
--- a/gni/isolate.gni
+++ b/gni/isolate.gni
@@ -61,6 +61,11 @@ template("v8_isolate_run") {
} else {
asan = "0"
}
+ if (is_lsan) {
+ lsan = "1"
+ } else {
+ lsan = "0"
+ }
if (is_msan) {
msan = "1"
} else {
@@ -158,6 +163,8 @@ template("v8_isolate_run") {
"--config-variable",
"is_gn=1",
"--config-variable",
+ "lsan=$lsan",
+ "--config-variable",
"msan=$msan",
"--config-variable",
"tsan=$tsan",
« no previous file with comments | « no previous file | gypfiles/isolate.gypi » ('j') | tools/memory/lsan/suppressions.txt » ('J')

Powered by Google App Engine
This is Rietveld 408576698