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

Unified Diff: cloud_print/BUILD.gn

Issue 2571023003: win/clang/x86: Use clang for 64-bit part of cloudprint. (Closed)
Patch Set: Created 4 years 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: cloud_print/BUILD.gn
diff --git a/cloud_print/BUILD.gn b/cloud_print/BUILD.gn
index 75ed5e07e825c7d8d2022baa9d14c1560b98207a..0ec5a6b7072e3e8354a12d5a58bf5c5bc09fb646 100644
--- a/cloud_print/BUILD.gn
+++ b/cloud_print/BUILD.gn
@@ -14,7 +14,12 @@ group("cloud_print") {
# When compiling 32-bit, also reference the 64-bit driver for installing on
# 64-bit systems.
if (target_cpu == "x86" && current_cpu == "x86") {
- public_deps += [ "//cloud_print/virtual_driver/win/port_monitor(//build/toolchain/win:x64)" ]
+ if (is_clang) {
+ win64 = "//build/toolchain/win:clang_x64"
+ } else {
+ win64 = "//build/toolchain/win:x64"
+ }
+ public_deps += [ "//cloud_print/virtual_driver/win/port_monitor($win64)" ]
}
}
}
« 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