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

Side by Side Diff: trunk/src/build/common.gypi

Issue 13091002: Revert 190623 "ChromeOS: Enable gold linker flags." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 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 | 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 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 536
537 ['(OS=="android" and google_tv!=1) or OS=="ios"', { 537 ['(OS=="android" and google_tv!=1) or OS=="ios"', {
538 'enable_plugins%': 0, 538 'enable_plugins%': 0,
539 }, { 539 }, {
540 'enable_plugins%': 1, 540 'enable_plugins%': 1,
541 }], 541 }],
542 542
543 # linux_use_gold_binary: whether to use the binary checked into 543 # linux_use_gold_binary: whether to use the binary checked into
544 # third_party/gold. Gold is not used for 32-bit linux builds 544 # third_party/gold. Gold is not used for 32-bit linux builds
545 # as it runs out of address space. 545 # as it runs out of address space.
546 # linux_use_gold_flags: whether to use build flags that rely on gold.
547 ['OS=="linux" and (target_arch=="x64" or target_arch=="arm")', { 546 ['OS=="linux" and (target_arch=="x64" or target_arch=="arm")', {
548 'linux_use_gold_binary%': 1, 547 'linux_use_gold_binary%': 1,
548 }, {
549 'linux_use_gold_binary%': 0,
550 }],
551
552 # linux_use_gold_flags: whether to use build flags that rely on gold.
553 # On by default for x64 Linux. Temporarily off for ChromeOS as
554 # it failed on a buildbot.
555 ['OS=="linux" and target_arch=="x64" and chromeos==0', {
549 'linux_use_gold_flags%': 1, 556 'linux_use_gold_flags%': 1,
550 }, { 557 }, {
551 'linux_use_gold_binary%': 0,
552 'linux_use_gold_flags%': 0, 558 'linux_use_gold_flags%': 0,
553 }], 559 }],
554 560
555 ['chromeos==1', { 561 ['chromeos==1', {
556 'linux_use_libgps%': 1, 562 'linux_use_libgps%': 1,
557 }, { # chromeos==0 563 }, { # chromeos==0
558 # Do not use libgps on desktop Linux by default, 564 # Do not use libgps on desktop Linux by default,
559 # see http://crbug.com/103751. 565 # see http://crbug.com/103751.
560 'linux_use_libgps%': 0, 566 'linux_use_libgps%': 0,
561 }], 567 }],
(...skipping 3608 matching lines...) Expand 10 before | Expand all | Expand 10 after
4170 # settings in target dicts. SYMROOT is a special case, because many other 4176 # settings in target dicts. SYMROOT is a special case, because many other
4171 # Xcode variables depend on it, including variables such as 4177 # Xcode variables depend on it, including variables such as
4172 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4178 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4173 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4179 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4174 # files to appear (when present) in the UI as actual files and not red 4180 # files to appear (when present) in the UI as actual files and not red
4175 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4181 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4176 # and therefore SYMROOT, needs to be set at the project level. 4182 # and therefore SYMROOT, needs to be set at the project level.
4177 'SYMROOT': '<(DEPTH)/xcodebuild', 4183 'SYMROOT': '<(DEPTH)/xcodebuild',
4178 }, 4184 },
4179 } 4185 }
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