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

Side by Side Diff: build/common.gypi

Issue 27197011: Support cross compiling for armhf variant ARM/linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | build/install-build-deps.sh » ('j') | build/linux/install-arm-sysroot.py » ('J')
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 1749 matching lines...) Expand 10 before | Expand all | Expand 10 after
1760 ['arm_version==7 and android_webview_build==0', { 1760 ['arm_version==7 and android_webview_build==0', {
1761 'arm_arch%': 'armv7-a', 1761 'arm_arch%': 'armv7-a',
1762 'arm_tune%': 'cortex-a8', 1762 'arm_tune%': 'cortex-a8',
1763 'conditions': [ 1763 'conditions': [
1764 ['arm_neon==1', { 1764 ['arm_neon==1', {
1765 'arm_fpu%': 'neon', 1765 'arm_fpu%': 'neon',
1766 }, { 1766 }, {
1767 'arm_fpu%': 'vfpv3-d16', 1767 'arm_fpu%': 'vfpv3-d16',
1768 }], 1768 }],
1769 ], 1769 ],
1770 'arm_float_abi%': 'softfp', 1770 'arm_float_abi%': 'hard',
Sam Clegg 2013/10/28 17:20:09 Really I would have liked to remove this line comp
ghost stip (do not use) 2013/10/28 18:17:02 Looking at http://gcc.gnu.org/onlinedocs/gcc/ARM-O
1771 'arm_thumb%': 1, 1771 'arm_thumb%': 1,
1772 }], 1772 }],
1773 1773
1774 ['android_webview_build==1', { 1774 ['android_webview_build==1', {
1775 # The WebView build gets its cpu-specific flags from the Android build s ystem. 1775 # The WebView build gets its cpu-specific flags from the Android build s ystem.
1776 'arm_arch%': '', 1776 'arm_arch%': '',
1777 'arm_tune%': '', 1777 'arm_tune%': '',
1778 'arm_fpu%': '', 1778 'arm_fpu%': '',
1779 'arm_float_abi%': '', 1779 'arm_float_abi%': '',
1780 'arm_thumb%': 0, 1780 'arm_thumb%': 0,
(...skipping 2942 matching lines...) Expand 10 before | Expand all | Expand 10 after
4723 # settings in target dicts. SYMROOT is a special case, because many other 4723 # settings in target dicts. SYMROOT is a special case, because many other
4724 # Xcode variables depend on it, including variables such as 4724 # Xcode variables depend on it, including variables such as
4725 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4725 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4726 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4726 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4727 # files to appear (when present) in the UI as actual files and not red 4727 # files to appear (when present) in the UI as actual files and not red
4728 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4728 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4729 # and therefore SYMROOT, needs to be set at the project level. 4729 # and therefore SYMROOT, needs to be set at the project level.
4730 'SYMROOT': '<(DEPTH)/xcodebuild', 4730 'SYMROOT': '<(DEPTH)/xcodebuild',
4731 }, 4731 },
4732 } 4732 }
OLDNEW
« no previous file with comments | « no previous file | build/install-build-deps.sh » ('j') | build/linux/install-arm-sysroot.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698