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

Unified Diff: build/config/mac/base_rules.gni

Issue 2130793003: Mac: Use unique output path for compile_xibs template in GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/mac/base_rules.gni
diff --git a/build/config/mac/base_rules.gni b/build/config/mac/base_rules.gni
index 109710dd3f77c4456cdac93bb7b49bf03dd76e96..df89c404df57061f0654a1e69fefad12c1e8b605 100644
--- a/build/config/mac/base_rules.gni
+++ b/build/config/mac/base_rules.gni
@@ -366,13 +366,14 @@ template("compile_xibs") {
script = "//build/config/mac/compile_xib.py"
sources = invoker.sources
outputs = [
- "$target_gen_dir/{{source_name_part}}.nib",
+ "$target_gen_dir/$target_name/{{source_name_part}}.nib",
]
- args = [
- "--input",
- "{{source}}",
- "--output",
- rebase_path("$target_gen_dir/{{source_name_part}}.nib"),
- ] + ibtool_flags
+ args =
+ [
+ "--input",
+ "{{source}}",
+ "--output",
+ rebase_path("$target_gen_dir/$target_name/{{source_name_part}}.nib"),
+ ] + ibtool_flags
}
}
« 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