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

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

Issue 2358713002: Adding SwiftShader compilation to Mac (Closed)
Patch Set: Adding fix to unstripped outputs 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 | « DEPS ('k') | chrome/BUILD.gn » ('j') | chrome/BUILD.gn » ('J')
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..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") {
« no previous file with comments | « DEPS ('k') | chrome/BUILD.gn » ('j') | chrome/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698