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

Unified Diff: src/trusted/win/BUILD.gn

Issue 2189153002: Turn off ASAN for non-default toolchains for win clang. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/win/BUILD.gn
diff --git a/src/trusted/win/BUILD.gn b/src/trusted/win/BUILD.gn
index cd52e3954e2f96643f680717a9cbf5f65d5b243d..e8754751f80016ae728be777fed85351a470fdec 100644
--- a/src/trusted/win/BUILD.gn
+++ b/src/trusted/win/BUILD.gn
@@ -59,14 +59,20 @@ template("nacl_win_as_toolchain") {
host_toolchain = host_toolchain
target_os = target_os
target_cpu = target_cpu
+
+ if (defined(invoker.is_asan)) {
+ is_asan = invoker.is_asan
+ }
}
}
}
nacl_win_as_toolchain("nacl_win_as_x86") {
toolchain_cpu = "x86"
+ is_asan = false
}
nacl_win_as_toolchain("nacl_win_as_x64") {
toolchain_cpu = "x64"
+ is_asan = false
}
« 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