Commit dccdfe7c authored by John Z Wu's avatar John Z Wu Committed by Commit Bot

Add deployment target to build script.

Change-Id: Id020aaffb2a2175763b37e9b72414ae06a20dcf8
Reviewed-on: https://chromium-review.googlesource.com/c/1319407Reviewed-by: default avatarHiroshi Ichikawa <ichikawa@chromium.org>
Commit-Queue: John Wu <jzw@chromium.org>
Cr-Commit-Position: refs/heads/master@{#605919}
parent 48bcb8e3
...@@ -233,6 +233,8 @@ def main(): ...@@ -233,6 +233,8 @@ def main():
else: else:
extra_gn_options += 'ios_web_view_enable_autofill=false ' extra_gn_options += 'ios_web_view_enable_autofill=false '
extra_gn_options += 'ios_web_view_output_name="%s" ' % output_name extra_gn_options += 'ios_web_view_output_name="%s" ' % output_name
# This is needed until all clients drop iOS 10 support.
extra_gn_options += 'ios_deployment_target="10.0" '
# This prevents Breakpad from being included in the final binary to avoid # This prevents Breakpad from being included in the final binary to avoid
# duplicate symbols with the client app. # duplicate symbols with the client app.
extra_gn_options += 'use_crash_key_stubs=true ' extra_gn_options += 'use_crash_key_stubs=true '
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment