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

Side by Side Diff: build/common.gypi

Issue 19166002: Turn on optimized debug builds for V8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | 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) 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 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1098 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', 1098 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))',
1099 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', 1099 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))',
1100 1100
1101 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', 1101 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1102 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 1102 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1103 1103
1104 # Whether we are using the rlz library or not. Platforms like Android send 1104 # Whether we are using the rlz library or not. Platforms like Android send
1105 # rlz codes for searches but do not use the library. 1105 # rlz codes for searches but do not use the library.
1106 'enable_rlz%': 0, 1106 'enable_rlz%': 0,
1107 1107
1108 # Turns on compiler optimizations in V8 in Debug build.
1109 'v8_optimized_debug%': 1,
1110
1108 'conditions': [ 1111 'conditions': [
1109 # The version of GCC in use, set later in platforms that use GCC and have 1112 # The version of GCC in use, set later in platforms that use GCC and have
1110 # not explicitly chosen to build with clang. Currently, this means all 1113 # not explicitly chosen to build with clang. Currently, this means all
1111 # platforms except Windows, Mac and iOS. 1114 # platforms except Windows, Mac and iOS.
1112 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that 1115 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
1113 # it takes effect here. 1116 # it takes effect here.
1114 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa n==0 and tsan==0 and msan==0', { 1117 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa n==0 and tsan==0 and msan==0', {
1115 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 1118 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
1116 }, { 1119 }, {
1117 'gcc_version%': 0, 1120 'gcc_version%': 0,
(...skipping 3518 matching lines...) Expand 10 before | Expand all | Expand 10 after
4636 # settings in target dicts. SYMROOT is a special case, because many other 4639 # settings in target dicts. SYMROOT is a special case, because many other
4637 # Xcode variables depend on it, including variables such as 4640 # Xcode variables depend on it, including variables such as
4638 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4641 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4639 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4642 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4640 # files to appear (when present) in the UI as actual files and not red 4643 # files to appear (when present) in the UI as actual files and not red
4641 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4644 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4642 # and therefore SYMROOT, needs to be set at the project level. 4645 # and therefore SYMROOT, needs to be set at the project level.
4643 'SYMROOT': '<(DEPTH)/xcodebuild', 4646 'SYMROOT': '<(DEPTH)/xcodebuild',
4644 }, 4647 },
4645 } 4648 }
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