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/config/allocator.gni") | 5 import("//build/config/allocator.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 | 7 |
8 declare_args() { | 8 declare_args() { |
9 # Provide a way to force disable debugallocation in Debug builds, | 9 # Provide a way to force disable debugallocation in Debug builds, |
10 # e.g. for profiling (it's more rare to profile Debug builds, | 10 # e.g. for profiling (it's more rare to profile Debug builds, |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 deps = [ | 92 deps = [ |
93 ":prep_libc", | 93 ":prep_libc", |
94 "//base", | 94 "//base", |
95 ] | 95 ] |
96 } | 96 } |
97 } | 97 } |
98 } | 98 } |
99 | 99 |
100 if (use_allocator == "tcmalloc") { | 100 if (use_allocator == "tcmalloc") { |
101 # tcmalloc currently won't compile on Android. | 101 # tcmalloc currently won't compile on Android. |
102 source_set("tcmalloc") { | 102 static_library("tcmalloc") { |
103 tcmalloc_dir = "//third_party/tcmalloc/chromium" | 103 tcmalloc_dir = "//third_party/tcmalloc/chromium" |
104 | 104 |
105 # Don't check tcmalloc's includes. These files include various files like | 105 # Don't check tcmalloc's includes. These files include various files like |
106 # base/foo.h and they actually refer to tcmalloc's forked copy of base | 106 # base/foo.h and they actually refer to tcmalloc's forked copy of base |
107 # rather than the regular one, which confuses the header checker. | 107 # rather than the regular one, which confuses the header checker. |
108 check_includes = false | 108 check_includes = false |
109 | 109 |
110 sources = [ | 110 sources = [ |
111 # Generated for our configuration from tcmalloc's build | 111 # Generated for our configuration from tcmalloc's build |
112 # and checked in. | 112 # and checked in. |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 # Make sure the allocation library is optimized as much as possible when | 265 # Make sure the allocation library is optimized as much as possible when |
266 # we"re in release mode. | 266 # we"re in release mode. |
267 if (!is_debug) { | 267 if (!is_debug) { |
268 configs -= [ "//build/config/compiler:default_optimization" ] | 268 configs -= [ "//build/config/compiler:default_optimization" ] |
269 configs += [ "//build/config/compiler:optimize_max" ] | 269 configs += [ "//build/config/compiler:optimize_max" ] |
270 } | 270 } |
271 | 271 |
272 deps += [ "//base/third_party/dynamic_annotations" ] | 272 deps += [ "//base/third_party/dynamic_annotations" ] |
273 } | 273 } |
274 } # !is_android | 274 } # !is_android |
OLD | NEW |