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

Unified Diff: BUILD.gn

Issue 2192833002: Fix GN generation for WinASAN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits 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 | base/BUILD.gn » ('j') | build/config/sanitizers/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 8bf24cc9db7cd7eb26121c8bb2606070fb0ca382..90d164322b2d744b493d872eb22ea01a484d897f 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -109,9 +109,13 @@ if (is_win) {
"//courgette:copy_courgette_binaries",
"//remoting/webapp",
]
- if (target_cpu == "x86") {
- deps += [ "//courgette(//build/toolchain/win:x64)" ]
+ if (target_cpu == "x86") {
+ if (is_clang) {
+ deps += [ "//courgette(//build/toolchain/win:clang_x64)" ]
+ } else {
+ deps += [ "//courgette(//build/toolchain/win:x64)" ]
+ }
if (is_chrome_branded) {
deps += [ "//remoting/host:remoting_host_installation" ]
}
« no previous file with comments | « no previous file | base/BUILD.gn » ('j') | build/config/sanitizers/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698