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

Side by Side Diff: build/common.gypi

Issue 811763006: Compile V8 with the heap verification feature compiled in (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 1438 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 # Whether we are using the rlz library or not. Platforms like Android send 1449 # Whether we are using the rlz library or not. Platforms like Android send
1450 # rlz codes for searches but do not use the library. 1450 # rlz codes for searches but do not use the library.
1451 'enable_rlz%': 0, 1451 'enable_rlz%': 0,
1452 1452
1453 # Turns on the i18n support in V8. 1453 # Turns on the i18n support in V8.
1454 'v8_enable_i18n_support': 1, 1454 'v8_enable_i18n_support': 1,
1455 1455
1456 # Compile d8 for the host toolset. 1456 # Compile d8 for the host toolset.
1457 'v8_toolset_for_d8': 'host', 1457 'v8_toolset_for_d8': 'host',
1458 1458
1459 # Enable the V8 heap verification code. The verification itself is enabled
1460 # via a command line option.
1461 'v8_enable_verify_heap%': 1,
1462
1459 # Use brlapi from brltty for braille display support. 1463 # Use brlapi from brltty for braille display support.
1460 'use_brlapi%': 0, 1464 'use_brlapi%': 0,
1461 1465
1462 # Relative path to icu.gyp from this file. 1466 # Relative path to icu.gyp from this file.
1463 'icu_gyp_path': '../third_party/icu/icu.gyp', 1467 'icu_gyp_path': '../third_party/icu/icu.gyp',
1464 1468
1465 # IPC fuzzer is disabled by default. 1469 # IPC fuzzer is disabled by default.
1466 'enable_ipc_fuzzer%': 0, 1470 'enable_ipc_fuzzer%': 0,
1467 1471
1468 # Force disable libstdc++ debug mode. 1472 # Force disable libstdc++ debug mode.
(...skipping 4380 matching lines...) Expand 10 before | Expand all | Expand 10 after
5849 # settings in target dicts. SYMROOT is a special case, because many other 5853 # settings in target dicts. SYMROOT is a special case, because many other
5850 # Xcode variables depend on it, including variables such as 5854 # Xcode variables depend on it, including variables such as
5851 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5855 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5852 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5856 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5853 # files to appear (when present) in the UI as actual files and not red 5857 # files to appear (when present) in the UI as actual files and not red
5854 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5858 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5855 # and therefore SYMROOT, needs to be set at the project level. 5859 # and therefore SYMROOT, needs to be set at the project level.
5856 'SYMROOT': '<(DEPTH)/xcodebuild', 5860 'SYMROOT': '<(DEPTH)/xcodebuild',
5857 }, 5861 },
5858 } 5862 }
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