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

Side by Side Diff: build/common.gypi

Issue 1617014: Turn off TCMalloc for Linux to fix plugin crashes. (Closed)
Patch Set: Created 10 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 | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 'variables': { 9 'variables': {
10 # .gyp files or targets should set chromium_code to 1 if they build 10 # .gyp files or targets should set chromium_code to 1 if they build
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 # sandbox the zygote process and, thus, all renderer processes. 196 # sandbox the zygote process and, thus, all renderer processes.
197 'linux_sandbox_path%': '', 197 'linux_sandbox_path%': '',
198 198
199 # Set this to true to enable SELinux support. 199 # Set this to true to enable SELinux support.
200 'selinux%': 0, 200 'selinux%': 0,
201 201
202 # Strip the binary after dumping symbols. 202 # Strip the binary after dumping symbols.
203 'linux_strip_binary%': 0, 203 'linux_strip_binary%': 0,
204 204
205 # Enable TCMalloc. 205 # Enable TCMalloc.
206 'linux_use_tcmalloc%': 1, 206 'linux_use_tcmalloc%': 0,
207 207
208 # Disable TCMalloc's heapchecker. 208 # Disable TCMalloc's heapchecker.
209 'linux_use_heapchecker%': 0, 209 'linux_use_heapchecker%': 0,
210 210
211 # Set to 1 to turn on seccomp sandbox by default. 211 # Set to 1 to turn on seccomp sandbox by default.
212 # (Note: this is ignored for official builds.) 212 # (Note: this is ignored for official builds.)
213 'linux_use_seccomp_sandbox%': 0, 213 'linux_use_seccomp_sandbox%': 0,
214 214
215 # Set to select the Title Case versions of strings in GRD files. 215 # Set to select the Title Case versions of strings in GRD files.
216 'use_titlecase_in_grd_files%': 0, 216 'use_titlecase_in_grd_files%': 0,
(...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after
1252 # and therefore SYMROOT, needs to be set at the project level. 1252 # and therefore SYMROOT, needs to be set at the project level.
1253 'SYMROOT': '<(DEPTH)/xcodebuild', 1253 'SYMROOT': '<(DEPTH)/xcodebuild',
1254 }, 1254 },
1255 } 1255 }
1256 1256
1257 # Local Variables: 1257 # Local Variables:
1258 # tab-width:2 1258 # tab-width:2
1259 # indent-tabs-mode:nil 1259 # indent-tabs-mode:nil
1260 # End: 1260 # End:
1261 # vim: set expandtab tabstop=2 shiftwidth=2: 1261 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698