| Index: build/toolchain/mac/BUILD.gn
|
| diff --git a/build/toolchain/mac/BUILD.gn b/build/toolchain/mac/BUILD.gn
|
| index 0c00e995fffe139ac39badd12790acbad3a78a7a..deea5a5d4dcf46e998c563f313657bfebbfcb322 100644
|
| --- a/build/toolchain/mac/BUILD.gn
|
| +++ b/build/toolchain/mac/BUILD.gn
|
| @@ -139,7 +139,7 @@ template("mac_toolchain") {
|
| if (_enable_dsyms) {
|
| dsym_switch = " -Wcrl,dsym,{{root_out_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") {
|
|
|