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

Side by Side Diff: base/allocator/BUILD.gn

Issue 1549913002: tcmalloc: Use C++11 atomics where appropriate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/tcmalloc/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 # and checked in. 115 # and checked in.
116 "$tcmalloc_dir/src/config.h", 116 "$tcmalloc_dir/src/config.h",
117 "$tcmalloc_dir/src/config_android.h", 117 "$tcmalloc_dir/src/config_android.h",
118 "$tcmalloc_dir/src/config_linux.h", 118 "$tcmalloc_dir/src/config_linux.h",
119 "$tcmalloc_dir/src/config_win.h", 119 "$tcmalloc_dir/src/config_win.h",
120 120
121 # tcmalloc native and forked files. 121 # tcmalloc native and forked files.
122 "$tcmalloc_dir/src/base/abort.cc", 122 "$tcmalloc_dir/src/base/abort.cc",
123 "$tcmalloc_dir/src/base/abort.h", 123 "$tcmalloc_dir/src/base/abort.h",
124 "$tcmalloc_dir/src/base/arm_instruction_set_select.h", 124 "$tcmalloc_dir/src/base/arm_instruction_set_select.h",
125 "$tcmalloc_dir/src/base/atomicops-internals-arm-generic.h",
126 "$tcmalloc_dir/src/base/atomicops-internals-arm-v6plus.h",
127 "$tcmalloc_dir/src/base/atomicops-internals-linuxppc.h",
128 "$tcmalloc_dir/src/base/atomicops-internals-macosx.h", 125 "$tcmalloc_dir/src/base/atomicops-internals-macosx.h",
129 "$tcmalloc_dir/src/base/atomicops-internals-windows.h", 126 "$tcmalloc_dir/src/base/atomicops-internals-windows.h",
130 "$tcmalloc_dir/src/base/atomicops-internals-x86.cc",
131 "$tcmalloc_dir/src/base/atomicops-internals-x86.h",
132 "$tcmalloc_dir/src/base/atomicops.h", 127 "$tcmalloc_dir/src/base/atomicops.h",
128 "$tcmalloc_dir/src/base/atomicops_internals_portable.h",
129 "$tcmalloc_dir/src/base/basictypes.h",
133 "$tcmalloc_dir/src/base/commandlineflags.h", 130 "$tcmalloc_dir/src/base/commandlineflags.h",
134 "$tcmalloc_dir/src/base/cycleclock.h", 131 "$tcmalloc_dir/src/base/cycleclock.h",
135 132
136 # We don't list dynamic_annotations.c since its copy is already 133 # We don't list dynamic_annotations.c since its copy is already
137 # present in the dynamic_annotations target. 134 # present in the dynamic_annotations target.
138 "$tcmalloc_dir/src/base/elf_mem_image.cc", 135 "$tcmalloc_dir/src/base/elf_mem_image.cc",
139 "$tcmalloc_dir/src/base/elf_mem_image.h", 136 "$tcmalloc_dir/src/base/elf_mem_image.h",
140 "$tcmalloc_dir/src/base/linuxthreads.cc", 137 "$tcmalloc_dir/src/base/linuxthreads.cc",
141 "$tcmalloc_dir/src/base/linuxthreads.h", 138 "$tcmalloc_dir/src/base/linuxthreads.h",
142 "$tcmalloc_dir/src/base/logging.cc", 139 "$tcmalloc_dir/src/base/logging.cc",
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 "-Wl,-wrap,calloc", 300 "-Wl,-wrap,calloc",
304 "-Wl,-wrap,free", 301 "-Wl,-wrap,free",
305 "-Wl,-wrap,malloc", 302 "-Wl,-wrap,malloc",
306 "-Wl,-wrap,memalign", 303 "-Wl,-wrap,memalign",
307 "-Wl,-wrap,posix_memalign", 304 "-Wl,-wrap,posix_memalign",
308 "-Wl,-wrap,pvalloc", 305 "-Wl,-wrap,pvalloc",
309 "-Wl,-wrap,realloc", 306 "-Wl,-wrap,realloc",
310 "-Wl,-wrap,valloc", 307 "-Wl,-wrap,valloc",
311 ] 308 ]
312 } 309 }
OLDNEW
« no previous file with comments | « no previous file | third_party/tcmalloc/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698