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

Unified Diff: courgette/BUILD.gn

Issue 2152333002: Fix the Win64 GN installer config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Copy courgette64.exe to courgette.exe. 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 | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/BUILD.gn
diff --git a/courgette/BUILD.gn b/courgette/BUILD.gn
index 8a9eeaf073b44e6b10388da47efa0e61ba92b525..5693b9a899cc4d3f3d8bb361b8cbe7a74d7f3913 100644
--- a/courgette/BUILD.gn
+++ b/courgette/BUILD.gn
@@ -108,6 +108,23 @@ if (!is_ios) {
"//build/win:default_exe_manifest",
]
}
+
+ # The official build scripts expect courgette.exe to be in the official build
+ # archives but it's not clear if they really need it, copy courgette64.exe to
+ # courgette.exe to work around this. https://crbug.com/629243
+ if (is_win && current_cpu == "x64") {
+ copy("copy_courgette64_to_courgette") {
+ sources = [
+ "$root_out_dir/courgette64.exe",
+ ]
+ outputs = [
+ "$root_out_dir/courgette.exe",
+ ]
+ deps = [
+ ":courgette",
+ ]
+ }
+ }
}
test("courgette_unittests") {
« no previous file with comments | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698