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

Side by Side Diff: build/common.gypi

Issue 104403004: update armv6 floating point defaults (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: set arm_fpu=vfp instead for armv6 Created 7 years 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 1827 matching lines...) Expand 10 before | Expand all | Expand 10 after
1838 1838
1839 # Enable RLZ on Win, Mac, iOS and ChromeOS. 1839 # Enable RLZ on Win, Mac, iOS and ChromeOS.
1840 ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos= =1)', { 1840 ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos= =1)', {
1841 'enable_rlz%': 1, 1841 'enable_rlz%': 1,
1842 }], 1842 }],
1843 1843
1844 # Set default compiler flags depending on ARM version. 1844 # Set default compiler flags depending on ARM version.
1845 ['arm_version==6 and android_webview_build==0', { 1845 ['arm_version==6 and android_webview_build==0', {
1846 'arm_arch%': 'armv6', 1846 'arm_arch%': 'armv6',
1847 'arm_tune%': '', 1847 'arm_tune%': '',
1848 'arm_fpu%': '', 1848 'arm_fpu%': 'vfp',
1849 'arm_float_abi%': 'soft', 1849 'arm_float_abi%': 'softfp',
1850 'arm_thumb%': 0, 1850 'arm_thumb%': 0,
1851 }], 1851 }],
1852 ['arm_version==7 and android_webview_build==0', { 1852 ['arm_version==7 and android_webview_build==0', {
1853 'arm_arch%': 'armv7-a', 1853 'arm_arch%': 'armv7-a',
1854 'arm_tune%': 'cortex-a8', 1854 'arm_tune%': 'cortex-a8',
1855 'conditions': [ 1855 'conditions': [
1856 ['arm_neon==1', { 1856 ['arm_neon==1', {
1857 'arm_fpu%': 'neon', 1857 'arm_fpu%': 'neon',
1858 }, { 1858 }, {
1859 'arm_fpu%': 'vfpv3-d16', 1859 'arm_fpu%': 'vfpv3-d16',
(...skipping 2937 matching lines...) Expand 10 before | Expand all | Expand 10 after
4797 # settings in target dicts. SYMROOT is a special case, because many other 4797 # settings in target dicts. SYMROOT is a special case, because many other
4798 # Xcode variables depend on it, including variables such as 4798 # Xcode variables depend on it, including variables such as
4799 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4799 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4800 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4800 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4801 # files to appear (when present) in the UI as actual files and not red 4801 # files to appear (when present) in the UI as actual files and not red
4802 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4802 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4803 # and therefore SYMROOT, needs to be set at the project level. 4803 # and therefore SYMROOT, needs to be set at the project level.
4804 'SYMROOT': '<(DEPTH)/xcodebuild', 4804 'SYMROOT': '<(DEPTH)/xcodebuild',
4805 }, 4805 },
4806 } 4806 }
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