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

Unified Diff: runtime/bin/bin.gypi

Issue 2316813002: Use tcmalloc on Linux (Closed)
Patch Set: Don't use tcmalloc in an ASAN build Created 4 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 | « DEPS ('k') | runtime/tools/gyp/runtime-configurations.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/bin.gypi
diff --git a/runtime/bin/bin.gypi b/runtime/bin/bin.gypi
index 43b5915ce1f5cb4b68af75d0e4c582cfb72ea6b5..a31cb93bd454b48646285c1bc12edee887459048 100644
--- a/runtime/bin/bin.gypi
+++ b/runtime/bin/bin.gypi
@@ -1147,6 +1147,11 @@
},
},
}],
+ ['OS == "linux" and asan == 0', {
+ 'dependencies': [
+ '../third_party/tcmalloc/tcmalloc.gypi:tcmalloc',
+ ],
+ }],
],
'configurations': {
'Dart_Linux_Base': {
@@ -1393,6 +1398,11 @@
'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ],
},
}],
+ ['OS == "linux" and asan == 0', {
+ 'dependencies': [
+ '../third_party/tcmalloc/tcmalloc.gypi:tcmalloc',
+ ],
+ }],
],
'configurations': {
'Dart_Linux_Base': {
« no previous file with comments | « DEPS ('k') | runtime/tools/gyp/runtime-configurations.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698