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

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

Issue 2359913002: Mac toolchain: take output_dir into account for .dSYM (Closed)
Patch Set: Mac toolchain: take output_dir into account for .dSYM Created 4 years, 3 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 0c00e995fffe139ac39badd12790acbad3a78a7a..90e639a2ef904a6e18a6f5893a44256d3ba59feb 100644
--- a/build/toolchain/mac/BUILD.gn
+++ b/build/toolchain/mac/BUILD.gn
@@ -137,9 +137,9 @@ template("mac_toolchain") {
# If dSYMs are enabled, this flag will be added to the link tools.
if (_enable_dsyms) {
- dsym_switch = " -Wcrl,dsym,{{root_out_dir}} "
+ dsym_switch = " -Wcrl,dsym,{{output_dir}} "
dsym_output_dir =
- "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.dSYM"
+ "{{output_dir}}/{{target_output_name}}{{output_extension}}.dSYM"
dsym_output = [
"$dsym_output_dir/",
"$dsym_output_dir/Contents/Info.plist",
@@ -151,7 +151,8 @@ template("mac_toolchain") {
}
if (_save_unstripped_output) {
- _unstripped_output = "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.unstripped"
+ _unstripped_output =
+ "{{output_dir}}/{{target_output_name}}{{output_extension}}.unstripped"
}
tool("cc") {
« 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