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

Unified Diff: gypfiles/standalone.gypi

Issue 2172653002: MIPS: Fix mksnapshot on big-endian. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix chromium gyp build. Created 4 years, 5 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 | gypfiles/toolchain.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gypfiles/standalone.gypi
diff --git a/gypfiles/standalone.gypi b/gypfiles/standalone.gypi
index 89f06a0cbdcfac65f813c4ff623505e3fb06aec6..516ffdcbe4ae937ead7759dcc538a0f4022c0a83 100644
--- a/gypfiles/standalone.gypi
+++ b/gypfiles/standalone.gypi
@@ -238,13 +238,24 @@
(v8_target_arch=="arm64" and host_arch!="arm64") or \
(v8_target_arch=="mipsel" and host_arch!="mipsel") or \
(v8_target_arch=="mips64el" and host_arch!="mips64el") or \
- (v8_target_arch=="mips" and host_arch!="mips") or \
(v8_target_arch=="x64" and host_arch!="x64") or \
(OS=="android" or OS=="qnx")', {
'want_separate_host_toolset': 1,
}, {
'want_separate_host_toolset': 0,
}],
+ ['(v8_target_arch=="arm" and host_arch!="arm") or \
+ (v8_target_arch=="arm64" and host_arch!="arm64") or \
+ (v8_target_arch=="mipsel" and host_arch!="mipsel") or \
+ (v8_target_arch=="mips64el" and host_arch!="mips64el") or \
+ (v8_target_arch=="mips" and host_arch!="mips") or \
+ (v8_target_arch=="mips64" and host_arch!="mips64") or \
+ (v8_target_arch=="x64" and host_arch!="x64") or \
+ (OS=="android" or OS=="qnx")', {
+ 'want_separate_host_toolset_mkpeephole': 1,
+ }, {
+ 'want_separate_host_toolset_mkpeephole': 0,
+ }],
['OS == "win"', {
'os_posix%': 0,
}, {
« no previous file with comments | « no previous file | gypfiles/toolchain.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698