Index: build/config/mac/rules.gni |
diff --git a/build/config/mac/rules.gni b/build/config/mac/rules.gni |
index 9aa1f92ae25f3c1b5dcd1129c26835cb37fd1feb..3c0bc86cc9aaf39d98e97722d4bc662fed356dc5 100644 |
--- a/build/config/mac/rules.gni |
+++ b/build/config/mac/rules.gni |
@@ -181,11 +181,15 @@ template("mac_app_bundle") { |
"*", |
[ |
"assert_no_deps", |
+ "configs", |
brettw
2016/05/02 18:16:24
This should be removed. It should actually give yo
Robert Sesek
2016/05/02 18:46:17
Thanks. That was the open question, whether the cl
|
"data_deps", |
"info_plist", |
"output_name", |
"visibility", |
]) |
+ if (defined(invoker.configs)) { |
+ configs += invoker.configs |
Dirk Pranke
2016/04/28 21:20:45
You don't need both line 184 and lines 190-192, I
Robert Sesek
2016/04/28 21:34:54
Hm, then you don't get the default configs that se
Dirk Pranke
2016/04/28 21:46:17
Good question. I would've expected the configs to
brettw
2016/05/02 18:16:24
These block is correct.
Robert Sesek
2016/05/02 18:46:17
That didn't seem to work if I removed the clobber.
brettw
2016/05/02 19:18:01
Don't know, I would recommend printing the various
Robert Sesek
2016/05/02 21:01:19
It's because the line I removed at 184 is actually
|
+ } |
output_name = _output_name |
output_dir = "$target_out_dir/$_executable_target" |
} |