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

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

Issue 2150753002: Separate out target defaults in the GN build config. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Format Created 4 years, 5 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
Index: build/config/ios/rules.gni
diff --git a/build/config/ios/rules.gni b/build/config/ios/rules.gni
index aec0de5b8fa322d77b856fa4906ba88939bc995c..6edec87e9401f6b9c68b4d573cfc1d60eaff36a0 100644
--- a/build/config/ios/rules.gni
+++ b/build/config/ios/rules.gni
@@ -438,6 +438,10 @@ template("ios_app_bundle") {
}
}
+set_defaults("ios_app_bundle") {
+ configs = default_executable_configs
+}
+
# Template to build an application extension bundle for iOS.
#
# This should be used instead of "executable" built-in target type on iOS.
@@ -490,6 +494,10 @@ template("ios_appex_bundle") {
}
}
+set_defaults("ios_appex_bundle") {
+ configs = default_executable_configs
+}
+
# Compile a xib or storyboard file and add it to a bundle_data so that it is
# available at runtime in the bundle.
#
@@ -784,3 +792,7 @@ template("ios_framework_bundle") {
}
}
}
+
+set_defaults("ios_framework_bundle") {
+ configs = default_shared_library_configs
+}

Powered by Google App Engine
This is Rietveld 408576698