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

Side by Side Diff: third_party/WebKit/Source/platform/heap/asm/BUILD.gn

Issue 1984303002: MIPS64: Fix MIPS64 related issues in GN files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « build/toolchain/android/BUILD.gn ('k') | third_party/libvpx/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 (current_cpu == "x86" || current_cpu == "x64") { 5 if (current_cpu == "x86" || current_cpu == "x64") {
6 import("//third_party/yasm/yasm_assemble.gni") 6 import("//third_party/yasm/yasm_assemble.gni")
7 7
8 yasm_assemble("asm") { 8 yasm_assemble("asm") {
9 assert(current_cpu == "x86" || current_cpu == "x64") 9 assert(current_cpu == "x86" || current_cpu == "x64")
10 10
(...skipping 24 matching lines...) Expand all
35 "SaveRegisters_arm.S", 35 "SaveRegisters_arm.S",
36 ] 36 ]
37 } else if (current_cpu == "arm64") { 37 } else if (current_cpu == "arm64") {
38 sources = [ 38 sources = [
39 "SaveRegisters_arm64.S", 39 "SaveRegisters_arm64.S",
40 ] 40 ]
41 } else if (current_cpu == "mipsel") { 41 } else if (current_cpu == "mipsel") {
42 sources = [ 42 sources = [
43 "SaveRegisters_mips.S", 43 "SaveRegisters_mips.S",
44 ] 44 ]
45 } else if (current_cpu == "mips64el") {
46 sources = [
47 "SaveRegisters_mips64.S",
48 ]
45 } 49 }
46 50
47 if (current_cpu == "arm") { 51 if (current_cpu == "arm") {
48 defines = [ "ARM=1" ] 52 defines = [ "ARM=1" ]
49 } 53 }
50 } 54 }
51 } # current_cpu == "x86" || current_cpu == "x64" 55 } # current_cpu == "x86" || current_cpu == "x64"
OLDNEW
« no previous file with comments | « build/toolchain/android/BUILD.gn ('k') | third_party/libvpx/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698