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

Side by Side Diff: build/common.gypi

Issue 4200010: Revert 64267 - linux: enable seccomp sandbox by default... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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 | Annotate | Revision Log
« 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 # Disable TCMalloc's debugallocation. 276 # Disable TCMalloc's debugallocation.
277 'linux_use_debugallocation%': 0, 277 'linux_use_debugallocation%': 0,
278 278
279 # Disable TCMalloc's heapchecker. 279 # Disable TCMalloc's heapchecker.
280 'linux_use_heapchecker%': 0, 280 'linux_use_heapchecker%': 0,
281 281
282 # Disable shadow stack keeping used by heapcheck to unwind the stacks 282 # Disable shadow stack keeping used by heapcheck to unwind the stacks
283 # better. 283 # better.
284 'linux_keep_shadow_stacks%': 0, 284 'linux_keep_shadow_stacks%': 0,
285 285
286 # Turn on seccomp sandbox by default. 286 # Set to 1 to turn on seccomp sandbox by default.
287 # (Note: this is disabled for official builds.) 287 # (Note: this is ignored for official builds.)
288 'linux_use_seccomp_sandbox%': 1, 288 'linux_use_seccomp_sandbox%': 0,
289 289
290 # Set to 1 to link against libgnome-keyring instead of using dlopen(). 290 # Set to 1 to link against libgnome-keyring instead of using dlopen().
291 'linux_link_gnome_keyring%': 0, 291 'linux_link_gnome_keyring%': 0,
292 292
293 # Set to select the Title Case versions of strings in GRD files. 293 # Set to select the Title Case versions of strings in GRD files.
294 'use_titlecase_in_grd_files%': 0, 294 'use_titlecase_in_grd_files%': 0,
295 295
296 # Used to disable Native Client at compile time, for platforms where it 296 # Used to disable Native Client at compile time, for platforms where it
297 # isn't supported 297 # isn't supported
298 'disable_nacl%': 0, 298 'disable_nacl%': 0,
(...skipping 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after
1516 # and therefore SYMROOT, needs to be set at the project level. 1516 # and therefore SYMROOT, needs to be set at the project level.
1517 'SYMROOT': '<(DEPTH)/xcodebuild', 1517 'SYMROOT': '<(DEPTH)/xcodebuild',
1518 }, 1518 },
1519 } 1519 }
1520 1520
1521 # Local Variables: 1521 # Local Variables:
1522 # tab-width:2 1522 # tab-width:2
1523 # indent-tabs-mode:nil 1523 # indent-tabs-mode:nil
1524 # End: 1524 # End:
1525 # vim: set expandtab tabstop=2 shiftwidth=2: 1525 # 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