| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/allocator.gni") | 6 import("//build/config/allocator.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # Provide a way to force disable debugallocation in Debug builds, | 10 # Provide a way to force disable debugallocation in Debug builds, |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "$tcmalloc_dir/src/base/atomicops-internals-arm-generic.h", | 127 "$tcmalloc_dir/src/base/atomicops-internals-arm-generic.h", |
| 128 "$tcmalloc_dir/src/base/atomicops-internals-arm-v6plus.h", | 128 "$tcmalloc_dir/src/base/atomicops-internals-arm-v6plus.h", |
| 129 "$tcmalloc_dir/src/base/atomicops-internals-linuxppc.h", | 129 "$tcmalloc_dir/src/base/atomicops-internals-linuxppc.h", |
| 130 "$tcmalloc_dir/src/base/atomicops-internals-macosx.h", | 130 "$tcmalloc_dir/src/base/atomicops-internals-macosx.h", |
| 131 "$tcmalloc_dir/src/base/atomicops-internals-windows.h", | 131 "$tcmalloc_dir/src/base/atomicops-internals-windows.h", |
| 132 "$tcmalloc_dir/src/base/atomicops-internals-x86.cc", | 132 "$tcmalloc_dir/src/base/atomicops-internals-x86.cc", |
| 133 "$tcmalloc_dir/src/base/atomicops-internals-x86.h", | 133 "$tcmalloc_dir/src/base/atomicops-internals-x86.h", |
| 134 "$tcmalloc_dir/src/base/atomicops.h", | 134 "$tcmalloc_dir/src/base/atomicops.h", |
| 135 "$tcmalloc_dir/src/base/commandlineflags.h", | 135 "$tcmalloc_dir/src/base/commandlineflags.h", |
| 136 "$tcmalloc_dir/src/base/cycleclock.h", | 136 "$tcmalloc_dir/src/base/cycleclock.h", |
| 137 "$tcmalloc_dir/src/base/spinlock_linux-inl.h", |
| 137 | 138 |
| 138 # We don't list dynamic_annotations.c since its copy is already | 139 # We don't list dynamic_annotations.c since its copy is already |
| 139 # present in the dynamic_annotations target. | 140 # present in the dynamic_annotations target. |
| 140 "$tcmalloc_dir/src/base/elf_mem_image.cc", | 141 "$tcmalloc_dir/src/base/elf_mem_image.cc", |
| 141 "$tcmalloc_dir/src/base/elf_mem_image.h", | 142 "$tcmalloc_dir/src/base/elf_mem_image.h", |
| 142 "$tcmalloc_dir/src/base/linuxthreads.cc", | 143 "$tcmalloc_dir/src/base/linuxthreads.cc", |
| 143 "$tcmalloc_dir/src/base/linuxthreads.h", | 144 "$tcmalloc_dir/src/base/linuxthreads.h", |
| 144 "$tcmalloc_dir/src/base/logging.cc", | 145 "$tcmalloc_dir/src/base/logging.cc", |
| 145 "$tcmalloc_dir/src/base/logging.h", | 146 "$tcmalloc_dir/src/base/logging.h", |
| 146 "$tcmalloc_dir/src/base/low_level_alloc.cc", | 147 "$tcmalloc_dir/src/base/low_level_alloc.cc", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "-Wl,-wrap,calloc", | 301 "-Wl,-wrap,calloc", |
| 301 "-Wl,-wrap,free", | 302 "-Wl,-wrap,free", |
| 302 "-Wl,-wrap,malloc", | 303 "-Wl,-wrap,malloc", |
| 303 "-Wl,-wrap,memalign", | 304 "-Wl,-wrap,memalign", |
| 304 "-Wl,-wrap,posix_memalign", | 305 "-Wl,-wrap,posix_memalign", |
| 305 "-Wl,-wrap,pvalloc", | 306 "-Wl,-wrap,pvalloc", |
| 306 "-Wl,-wrap,realloc", | 307 "-Wl,-wrap,realloc", |
| 307 "-Wl,-wrap,valloc", | 308 "-Wl,-wrap,valloc", |
| 308 ] | 309 ] |
| 309 } | 310 } |
| OLD | NEW |