Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2331)

Unified Diff: build/config/ios/ios_sdk.gni

Issue 2431423002: Add variables to simplify code signing on iOS. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/ios/ios_sdk.gni
diff --git a/build/config/ios/ios_sdk.gni b/build/config/ios/ios_sdk.gni
index 0a3cded59cf1661546695f3a589ae8ad7057f0e4..687652d5f645cf454959f10ad8f1a0f8ce0a5397 100644
--- a/build/config/ios/ios_sdk.gni
+++ b/build/config/ios/ios_sdk.gni
@@ -25,6 +25,17 @@ declare_args() {
ios_enable_code_signing = true
ios_code_signing_identity = ""
+ # Prefix for CFBundleIdentifier property in iOS application bundles. You
+ # need to have code signing identity and mobile provisioning profiles that
+ # can sign $ios_app_bundle_id_prefix.* to build and run the app on devices.
+ ios_app_bundle_id_prefix = "org.chromium"
+
+ # If true, then allow using Xcode to automatically manage certificates. This
+ # requires loading a separate Xcode project and enable automatically managed
+ # certificates. When true, all test application will use the same bundle id
+ # to avoid running out of free certificates.
justincohen 2016/10/19 17:28:10 We aren't requiring developers to use a free accou
+ ios_automatically_manage_certs = true
+
# If non-empty, this list must contain valid cpu architecture, and the final
# build will be a multi-architecture build (aka fat build) supporting the
# main $target_cpu architecture and all of $additional_target_cpus.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698