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

Unified Diff: third_party/tcmalloc/tcmalloc.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 | « third_party/tcmalloc/include/gperftools/tcmalloc.h ('k') | third_party/tcmalloc/tcmalloc_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tcmalloc/tcmalloc.gypi
diff --git a/third_party/tcmalloc/tcmalloc.gypi b/third_party/tcmalloc/tcmalloc.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..fdfd186b608b6c41f50f63e380647f6f4591fc16
--- /dev/null
+++ b/third_party/tcmalloc/tcmalloc.gypi
@@ -0,0 +1,104 @@
+# Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+# for details. All rights reserved. Use of this source code is governed by a
+# BSD-style license that can be found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'dynamic_annotations',
+ 'type': 'static_library',
+ 'toolsets': ['host', 'target'],
+ 'include_dirs': [
+ 'include',
+ 'gperftools/src/base',
+ 'gperftools/src',
+ ],
+ 'cflags!': [
+ '-Werror',
+ '-Wnon-virtual-dtor',
+ '-Woverloaded-virtual',
+ '-fno-rtti',
+ ],
+ 'sources': [
+ 'gperftools/src/base/dynamic_annotations.c',
+ 'gperftools/src/base/dynamic_annotations.h',
+ ],
+ },
+ {
+ 'target_name': 'tcmalloc',
+ 'type': 'static_library',
+ 'toolsets': ['host', 'target'],
+ 'dependencies': [
+ 'dynamic_annotations',
+ ],
+ 'include_dirs': [
+ 'include',
+ 'gperftools/src/base',
+ 'gperftools/src',
+ ],
+ 'includes': [
+ 'tcmalloc_sources.gypi',
+ ],
+ # Disable the heap checker in tcmalloc.
+ 'defines': [
+ 'ENABLE_EMERGENCY_MALLOC',
+ 'NO_HEAP_CHECK',
+ # Disable debug even in a Dart Debug build. It is too slow.
+ 'NDEBUG',
+ ],
+ 'defines!': [
+ # Disable debug even in a Dart Debug build. It is too slow.
+ 'DEBUG',
+ ],
+ 'cflags': [
+ '-Wno-missing-field-initializers',
+ '-Wno-sign-compare',
+ '-Wno-type-limits',
+ '-Wno-unused-result',
+ '-Wno-vla',
+ '-fno-builtin-malloc',
+ '-fno-builtin-free',
+ '-fno-builtin-realloc',
+ '-fno-builtin-calloc',
+ '-fno-builtin-cfree',
+ '-fno-builtin-memalign',
+ '-fno-builtin-posix_memalign',
+ '-fno-builtin-valloc',
+ '-fno-builtin-pvalloc',
+ ],
+ 'cflags!': [
+ '-Werror',
+ '-Wvla',
+ ],
+ 'link_settings': {
+ 'ldflags': [
+ # Don't let linker rip this symbol out, otherwise the heap&cpu
+ # profilers will not initialize properly on startup.
+ '-Wl,-uIsHeapProfilerRunning,-uProfilerStart',
+ ],
+ },
+ 'sources!': [
+ # No debug allocator.
+ 'gperftools/src/debugallocation.cc',
+ # Not needed when using emergency malloc.
+ 'gperftools/src/fake_stacktrace_scope.cc',
+ # Not using the cpuprofiler
+ 'gperftools/src/base/thread_lister.c',
+ 'gperftools/src/base/thread_lister.h',
+ 'gperftools/src/profile-handler.cc',
+ 'gperftools/src/profile-handler.h',
+ 'gperftools/src/profiledata.cc',
+ 'gperftools/src/profiledata.h',
+ 'gperftools/src/profiler.cc',
+ ],
+ # Disable sample collection in Release and Product builds.
+ 'configurations': {
+ 'Dart_Product': {
+ 'defines': [
+ 'NO_TCMALLOC_SAMPLES',
+ ],
+ },
+ },
+ },
+ ],
+}
« no previous file with comments | « third_party/tcmalloc/include/gperftools/tcmalloc.h ('k') | third_party/tcmalloc/tcmalloc_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698