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

Unified Diff: build/config/BUILDCONFIG.gn

Issue 1183633003: cross gn Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: slightly smaller diff 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 | « base/trace_event/trace_log.cc ('k') | build/config/win/manifest.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILDCONFIG.gn
diff --git a/build/config/BUILDCONFIG.gn b/build/config/BUILDCONFIG.gn
index 4f3a223c32d23ab7b79007add5081deac14bdf7e..df92a43cc2ab083cb40ac1114750f7b0e10c0635 100644
--- a/build/config/BUILDCONFIG.gn
+++ b/build/config/BUILDCONFIG.gn
@@ -225,7 +225,11 @@ if (target_os == "android") {
_default_toolchain = host_toolchain
} else if (target_os == "win") {
# On Windows we use the same toolchain for host and target by default.
- assert(target_os == host_os, "Win cross-compiles only work on win hosts.")
+ #assert(target_os == host_os, "Win cross-compiles only work on win hosts.")
+ # TODO(thakis): Getting this working requires definiting a clang_x86 toolchain
+ # on mac.
+ assert(host_os != "mac" || target_cpu != "x86",
+ "Doing 32-bit Windows builds on Mac does not yet work, target 64-bit")
if (is_clang) {
_default_toolchain = "//build/toolchain/win:clang_$target_cpu"
} else {
« no previous file with comments | « base/trace_event/trace_log.cc ('k') | build/config/win/manifest.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698