| 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
|
| }
|
| }
|
|
|