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

Side by Side Diff: trunk/src/build/config/arm.gni

Issue 303493006: Revert 271207 "Changed android toolchain to use GCC 4.8" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 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 | « trunk/src/build/config/android/config.gni ('k') | trunk/src/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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 if (cpu_arch == "arm") { 5 if (cpu_arch == "arm") {
6 declare_args() { 6 declare_args() {
7 # Version of the ARM processor when compiling on ARM. Ignored on non-ARM 7 # Version of the ARM processor when compiling on ARM. Ignored on non-ARM
8 # platforms. 8 # platforms.
9 arm_version = 7 9 arm_version = 7
10 10
(...skipping 22 matching lines...) Expand all
33 if (arm_float_abi == "") { 33 if (arm_float_abi == "") {
34 arm_float_abi = "softfp" 34 arm_float_abi = "softfp"
35 } 35 }
36 arm_fpu = "vfp" 36 arm_fpu = "vfp"
37 # Thumb is a reduced instruction set available on some ARM processors that 37 # Thumb is a reduced instruction set available on some ARM processors that
38 # has increased code density. 38 # has increased code density.
39 arm_use_thumb = false 39 arm_use_thumb = false
40 40
41 } else if (arm_version == 7) { 41 } else if (arm_version == 7) {
42 arm_arch = "armv7-a" 42 arm_arch = "armv7-a"
43 arm_tune = "generic-armv7-a" 43 arm_tune = ""
44 if (arm_float_abi == "") { 44 if (arm_float_abi == "") {
45 arm_float_abi = "softfp" 45 arm_float_abi = "softfp"
46 } 46 }
47 arm_use_thumb = true 47 arm_use_thumb = true
48 48
49 if (arm_use_neon) { 49 if (arm_use_neon) {
50 arm_fpu = "neon" 50 arm_fpu = "neon"
51 } else { 51 } else {
52 arm_fpu = "vfpv3-d16" 52 arm_fpu = "vfpv3-d16"
53 } 53 }
54 } 54 }
55 } 55 }
OLDNEW
« no previous file with comments | « trunk/src/build/config/android/config.gni ('k') | trunk/src/build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698