| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ios/ios_sdk.gni") | 6 import("//build/config/ios/ios_sdk.gni") |
| 7 import("//build/config/mac/symbols.gni") | 7 import("//build/config/mac/symbols.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # Enable today extension. | 10 # Enable today extension. |
| 11 ios_enable_today_extension = true | 11 ios_enable_today_extension = true |
| 12 ios_enable_search_widget_extension = true | 12 ios_enable_search_widget_extension = true |
| 13 ios_enable_content_widget_extension = true |
| 13 | 14 |
| 14 # Enable share extension. | 15 # Enable share extension. |
| 15 ios_enable_share_extension = true | 16 ios_enable_share_extension = true |
| 16 | 17 |
| 17 # Value of the encryption export compliance code. See "Cryptography and | 18 # Value of the encryption export compliance code. See "Cryptography and |
| 18 # U.S. Export Compliance" in "Submitting the App to App Review" in the | 19 # U.S. Export Compliance" in "Submitting the App to App Review" in the |
| 19 # Apple developer documentation (https://goo.gl/yv1xEF). | 20 # Apple developer documentation (https://goo.gl/yv1xEF). |
| 20 ios_encryption_export_compliance_code = "" | 21 ios_encryption_export_compliance_code = "" |
| 21 | 22 |
| 22 # List of plist templates to merge when generating chrome Info.plist. | 23 # List of plist templates to merge when generating chrome Info.plist. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 53 url_unsecure_scheme = "googlechrome" | 54 url_unsecure_scheme = "googlechrome" |
| 54 url_x_callback_scheme = "googlechrome-x-callback" | 55 url_x_callback_scheme = "googlechrome-x-callback" |
| 55 } else { | 56 } else { |
| 56 chromium_short_name = "Chromium" | 57 chromium_short_name = "Chromium" |
| 57 url_channel_scheme = "chromium-dev" | 58 url_channel_scheme = "chromium-dev" |
| 58 url_secure_scheme = "chromiums" | 59 url_secure_scheme = "chromiums" |
| 59 url_ssoauth_scheme = "$ios_app_bundle_id_prefix.sso.chromium" | 60 url_ssoauth_scheme = "$ios_app_bundle_id_prefix.sso.chromium" |
| 60 url_unsecure_scheme = "chromium" | 61 url_unsecure_scheme = "chromium" |
| 61 url_x_callback_scheme = "chromium-x-callback" | 62 url_x_callback_scheme = "chromium-x-callback" |
| 62 } | 63 } |
| OLD | NEW |