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

Side by Side Diff: build/common.gypi

Issue 1140503004: Switch default float-abi for ARM linux from softfp to hard (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | native_client_sdk/src/build_tools/build_artifacts.py » ('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 2299 matching lines...) Expand 10 before | Expand all | Expand 10 after
2310 }], 2310 }],
2311 ['arm_version==7', { 2311 ['arm_version==7', {
2312 'arm_arch%': 'armv7-a', 2312 'arm_arch%': 'armv7-a',
2313 'arm_tune%': 'generic-armv7-a', 2313 'arm_tune%': 'generic-armv7-a',
2314 'conditions': [ 2314 'conditions': [
2315 ['arm_neon==1', { 2315 ['arm_neon==1', {
2316 'arm_fpu%': 'neon', 2316 'arm_fpu%': 'neon',
2317 }, { 2317 }, {
2318 'arm_fpu%': 'vfpv3-d16', 2318 'arm_fpu%': 'vfpv3-d16',
2319 }], 2319 }],
2320 ['OS=="android"', {
2321 'arm_float_abi%': 'softfp',
2322 }, {
2323 'arm_float_abi%': 'hard',
2324 }],
2320 ], 2325 ],
2321 # Change the default to hard once the armhf transition is complete.
2322 'arm_float_abi%': 'softfp',
2323 'arm_thumb%': 1, 2326 'arm_thumb%': 1,
2324 }], 2327 }],
2325 2328
2326 # Set default compiler flags for MIPS floating-point support. 2329 # Set default compiler flags for MIPS floating-point support.
2327 ['target_arch=="mipsel"', { 2330 ['target_arch=="mipsel"', {
2328 'mips_float_abi%': 'hard', 2331 'mips_float_abi%': 'hard',
2329 }], 2332 }],
2330 ['target_arch=="mipsel" and mips_arch_variant=="r2"', { 2333 ['target_arch=="mipsel" and mips_arch_variant=="r2"', {
2331 'mips_fpu_mode%': 'fp32', 2334 'mips_fpu_mode%': 'fp32',
2332 }], 2335 }],
(...skipping 3856 matching lines...) Expand 10 before | Expand all | Expand 10 after
6189 # settings in target dicts. SYMROOT is a special case, because many other 6192 # settings in target dicts. SYMROOT is a special case, because many other
6190 # Xcode variables depend on it, including variables such as 6193 # Xcode variables depend on it, including variables such as
6191 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6194 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6192 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6195 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6193 # files to appear (when present) in the UI as actual files and not red 6196 # files to appear (when present) in the UI as actual files and not red
6194 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6197 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6195 # and therefore SYMROOT, needs to be set at the project level. 6198 # and therefore SYMROOT, needs to be set at the project level.
6196 'SYMROOT': '<(DEPTH)/xcodebuild', 6199 'SYMROOT': '<(DEPTH)/xcodebuild',
6197 }, 6200 },
6198 } 6201 }
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/build_artifacts.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698