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

Side by Side Diff: build/common.gypi

Issue 649433002: Revert of Enable debug fission for Release build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 3667 matching lines...) Expand 10 before | Expand all | Expand 10 after
3678 }], 3678 }],
3679 ['release_unwind_tables==1', { 3679 ['release_unwind_tables==1', {
3680 'cflags': ['-funwind-tables'], 3680 'cflags': ['-funwind-tables'],
3681 }, { 3681 }, {
3682 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-table s'], 3682 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-table s'],
3683 }], 3683 }],
3684 ], 3684 ],
3685 }, 3685 },
3686 }, 3686 },
3687 'conditions': [ 3687 'conditions': [
3688
3689 ['linux_use_debug_fission==1 and linux_use_gold_flags==1 and (clang==1 or gcc_version>=48) and binutils_version>=223', {
3690 'target_conditions': [
3691 ['_toolset=="target"', {
3692 'cflags': ['-gsplit-dwarf'],
3693 },
3694 ],
3695 ]
3696 }],
3697 ['target_arch=="ia32"', { 3688 ['target_arch=="ia32"', {
3698 'target_conditions': [ 3689 'target_conditions': [
3699 ['_toolset=="target"', { 3690 ['_toolset=="target"', {
3700 'asflags': [ 3691 'asflags': [
3701 # Needed so that libs with .s files (e.g. libicudata.a) 3692 # Needed so that libs with .s files (e.g. libicudata.a)
3702 # are compatible with the general 32-bit-ness. 3693 # are compatible with the general 32-bit-ness.
3703 '-32', 3694 '-32',
3704 ], 3695 ],
3705 # All floating-point computations on x87 happens in 80-bit 3696 # All floating-point computations on x87 happens in 80-bit
3706 # precision. Because the C and C++ language standards allow 3697 # precision. Because the C and C++ language standards allow
(...skipping 2081 matching lines...) Expand 10 before | Expand all | Expand 10 after
5788 # settings in target dicts. SYMROOT is a special case, because many other 5779 # settings in target dicts. SYMROOT is a special case, because many other
5789 # Xcode variables depend on it, including variables such as 5780 # Xcode variables depend on it, including variables such as
5790 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5781 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5791 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5782 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5792 # files to appear (when present) in the UI as actual files and not red 5783 # files to appear (when present) in the UI as actual files and not red
5793 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5784 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5794 # and therefore SYMROOT, needs to be set at the project level. 5785 # and therefore SYMROOT, needs to be set at the project level.
5795 'SYMROOT': '<(DEPTH)/xcodebuild', 5786 'SYMROOT': '<(DEPTH)/xcodebuild',
5796 }, 5787 },
5797 } 5788 }
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