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

Unified Diff: BUILD.gn

Issue 1585813002: S390: Makefile + Build Toolchain Updates (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add S390 target defines to BUILD.gn Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index c6bb4b522ac16d3925b018aee2a94bb86c1472ba..88097133c43099a7bca8e35af64327ed60d69a6c 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -171,12 +171,22 @@ config("toolchain") {
if (v8_target_arch == "mips64el") {
defines += [ "V8_TARGET_ARCH_MIPS64" ]
}
+ if (v8_target_arch == "s390") {
+ defines += [ "V8_TARGET_ARCH_S390" ]
+ }
+ if (v8_target_arch == "s390x") {
+ defines += [
+ "V8_TARGET_ARCH_S390",
+ "V8_TARGET_ARCH_S390X",
+ ]
+ }
if (v8_target_arch == "x86") {
defines += [ "V8_TARGET_ARCH_IA32" ]
}
if (v8_target_arch == "x64") {
defines += [ "V8_TARGET_ARCH_X64" ]
}
+
if (is_win) {
defines += [ "WIN32" ]
# TODO(jochen): Support v8_enable_prof.
« no previous file with comments | « no previous file | Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698