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

Side by Side Diff: build/common.gypi

Issue 1887303003: Build: disable icf for gcc builds with bundled gold (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixup Created 4 years, 8 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 2468 matching lines...) Expand 10 before | Expand all | Expand 10 after
2479 2479
2480 ['cfi_vptr==1', { 2480 ['cfi_vptr==1', {
2481 'use_lto%': 1, 2481 'use_lto%': 1,
2482 }], 2482 }],
2483 2483
2484 ['branding=="Chrome" and buildtype=="Official"', { 2484 ['branding=="Chrome" and buildtype=="Official"', {
2485 'enable_hangout_services_extension%': 1, 2485 'enable_hangout_services_extension%': 1,
2486 }, { 2486 }, {
2487 'enable_hangout_services_extension%': 0, 2487 'enable_hangout_services_extension%': 0,
2488 }], 2488 }],
2489
2490 # Gold doesn't respect section alignment and breaks gcc builds with icf
2491 # https://bugs.chromium.org/p/chromium/issues/detail?id=576197
2492 ['clang==0 and linux_use_bundled_gold==1', {
2493 'gold_icf_level%': 'none'
2494 }],
2489 ], 2495 ],
2490 2496
2491 # The path to the ANGLE library. 2497 # The path to the ANGLE library.
2492 'angle_path': '<(DEPTH)/third_party/angle', 2498 'angle_path': '<(DEPTH)/third_party/angle',
2493 2499
2494 # List of default apps to install in new profiles. The first list contains 2500 # List of default apps to install in new profiles. The first list contains
2495 # the source files as found in svn. The second list, used only for linux, 2501 # the source files as found in svn. The second list, used only for linux,
2496 # contains the destination location for each of the files. When a crx 2502 # contains the destination location for each of the files. When a crx
2497 # is added or removed from the list, the chrome/browser/resources/ 2503 # is added or removed from the list, the chrome/browser/resources/
2498 # default_apps/external_extensions.json file must also be updated. 2504 # default_apps/external_extensions.json file must also be updated.
(...skipping 3841 matching lines...) Expand 10 before | Expand all | Expand 10 after
6340 # settings in target dicts. SYMROOT is a special case, because many other 6346 # settings in target dicts. SYMROOT is a special case, because many other
6341 # Xcode variables depend on it, including variables such as 6347 # Xcode variables depend on it, including variables such as
6342 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6348 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6343 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6349 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6344 # files to appear (when present) in the UI as actual files and not red 6350 # files to appear (when present) in the UI as actual files and not red
6345 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6351 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6346 # and therefore SYMROOT, needs to be set at the project level. 6352 # and therefore SYMROOT, needs to be set at the project level.
6347 'SYMROOT': '<(DEPTH)/xcodebuild', 6353 'SYMROOT': '<(DEPTH)/xcodebuild',
6348 }, 6354 },
6349 } 6355 }
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