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

Unified Diff: build/toolchain/mac/BUILD.gn

Issue 2049003004: [Mac/GN] dSYM output always goes in root_out_dir, so specify it in linker outputs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: build/toolchain/mac/BUILD.gn
diff --git a/build/toolchain/mac/BUILD.gn b/build/toolchain/mac/BUILD.gn
index 1fdc1eef3175805485521607d667a19981de86e3..c96628c3f931faf3d008e339647d54d3d9d221d6 100644
--- a/build/toolchain/mac/BUILD.gn
+++ b/build/toolchain/mac/BUILD.gn
@@ -193,7 +193,7 @@ template("mac_toolchain") {
depend_output = tocname
if (enable_dsyms) {
- outputs += [ dylib + ".dSYM/" ]
+ outputs += [ "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.dSYM/" ]
}
}
@@ -224,7 +224,7 @@ template("mac_toolchain") {
]
if (enable_dsyms) {
- outputs += [ sofile + ".dSYM/" ]
+ outputs += [ "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.dSYM/" ]
}
}
@@ -248,7 +248,7 @@ template("mac_toolchain") {
]
if (enable_dsyms) {
- outputs += [ outfile + ".dSYM/" ]
+ outputs += [ "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.dSYM/" ]
}
default_output_dir = "{{root_out_dir}}"
« 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