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

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

Issue 1842833003: [GN] Declare arm arguments when target_cpu == "arm". (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 4 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
« 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 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 (current_cpu == "arm") { 5 if (target_cpu == "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
11 # The ARM floating point mode. This is either the string "hard", "soft", or 11 # The ARM floating point mode. This is either the string "hard", "soft", or
12 # "softfp". An empty string means to use the default one for the 12 # "softfp". An empty string means to use the default one for the
13 # arm_version. 13 # arm_version.
14 arm_float_abi = "" 14 arm_float_abi = ""
15 15
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 if (arm_use_neon) { 65 if (arm_use_neon) {
66 arm_fpu = "neon" 66 arm_fpu = "neon"
67 } else { 67 } else {
68 arm_fpu = "vfpv3-d16" 68 arm_fpu = "vfpv3-d16"
69 } 69 }
70 } 70 }
71 } else if (current_cpu == "arm64") { 71 } else if (current_cpu == "arm64") {
72 # arm64 supports only "hard". 72 # arm64 supports only "hard".
73 arm_float_abi = "hard" 73 arm_float_abi = "hard"
74 } 74 }
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