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

Side by Side Diff: build/common.gypi

Issue 1967103002: android: make exclude_unwind_tables depend only on is_official_build Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | build/config/compiler/BUILD.gn » ('j') | 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 1646 matching lines...) Expand 10 before | Expand all | Expand 10 after
1657 # configuration. Our gyp variable scoping is likely wrong and 1657 # configuration. Our gyp variable scoping is likely wrong and
1658 # needs to be cleaned up. The GN configuration should be changed 1658 # needs to be cleaned up. The GN configuration should be changed
1659 # to match. 1659 # to match.
1660 'binutils_version%': 224, 1660 'binutils_version%': 224,
1661 'linux_use_bundled_binutils%': '1', 1661 'linux_use_bundled_binutils%': '1',
1662 'linux_use_bundled_gold%': '1', 1662 'linux_use_bundled_gold%': '1',
1663 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin', 1663 'binutils_dir%': 'third_party/binutils/Linux_x64/Release/bin',
1664 }], 1664 }],
1665 # All Chrome builds have breakpad symbols, but only process the 1665 # All Chrome builds have breakpad symbols, but only process the
1666 # symbols from official builds. 1666 # symbols from official builds.
1667 ['(branding=="Chrome" and buildtype=="Official")', { 1667 ['buildtype=="Official"', {
1668 'linux_dump_symbols%': 1, 1668 'linux_dump_symbols%': 1,
1669 1669
1670 # Omit unwind support in official release builds to save space. We 1670 # Omit unwind support in official release builds to save space. We
1671 # can use breakpad for these builds. 1671 # can use breakpad for these builds.
1672 'release_unwind_tables%': 0, 1672 'release_unwind_tables%': 0,
1673 }], 1673 }],
1674 ], 1674 ],
1675 }], # os_posix==1 and OS!="mac" and OS!="ios" 1675 }], # os_posix==1 and OS!="mac" and OS!="ios"
1676 ['OS=="ios"', { 1676 ['OS=="ios"', {
1677 'disable_nacl%': 1, 1677 'disable_nacl%': 1,
(...skipping 4634 matching lines...) Expand 10 before | Expand all | Expand 10 after
6312 # settings in target dicts. SYMROOT is a special case, because many other 6312 # settings in target dicts. SYMROOT is a special case, because many other
6313 # Xcode variables depend on it, including variables such as 6313 # Xcode variables depend on it, including variables such as
6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6316 # files to appear (when present) in the UI as actual files and not red 6316 # files to appear (when present) in the UI as actual files and not red
6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6318 # and therefore SYMROOT, needs to be set at the project level. 6318 # and therefore SYMROOT, needs to be set at the project level.
6319 'SYMROOT': '<(DEPTH)/xcodebuild', 6319 'SYMROOT': '<(DEPTH)/xcodebuild',
6320 }, 6320 },
6321 } 6321 }
OLDNEW
« no previous file with comments | « no previous file | build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698