Index: build/toolchain/mac/BUILD.gn |
diff --git a/build/toolchain/mac/BUILD.gn b/build/toolchain/mac/BUILD.gn |
index 146744030c2e838f51fe3b71a9adc55c1e20f721..283f4011bbbd8dcd4b1a2660c0ef581ceb47a3de 100644 |
--- a/build/toolchain/mac/BUILD.gn |
+++ b/build/toolchain/mac/BUILD.gn |
@@ -276,9 +276,14 @@ template("mac_toolchain") { |
} |
tool("copy_bundle_data") { |
+ if (is_ios) { |
+ _extra_args = "--strings-format=binary1" |
+ } else { |
+ _extra_args = "" |
+ } |
_tool = rebase_path("//build/toolchain/mac/copy_bundle_data.py", |
root_build_dir) |
- command = "python $_tool {{source}} {{output}}" |
+ command = "python $_tool {{source}} {{output}} ${_extra_args}" |
Robert Sesek
2016/06/13 16:50:57
Put this before {{source}} ?
sdefresne
2016/06/14 07:27:39
Done.
|
description = "COPY_BUNDLE_DATA {{source}} {{output}}" |
pool = ":bundle_pool($default_toolchain)" |
} |