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

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

Issue 2205693005: Add bundle_deps_filter to create_bundle targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | tools/gn/bundle_data.h » ('j') | tools/gn/bundle_data.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/ios/rules.gni
diff --git a/build/config/ios/rules.gni b/build/config/ios/rules.gni
index 4f01ddc21229e74d884a188d3462b93cb0aa5674..608330eb0857b63574896a18615f903b60ed8b65 100644
--- a/build/config/ios/rules.gni
+++ b/build/config/ios/rules.gni
@@ -207,6 +207,7 @@ template("ios_app_bundle") {
[
"bundle_deps",
"bundle_extension",
+ "deps_filter",
"extra_system_frameworks",
"entitlements_path",
"extra_substitutions",
@@ -341,6 +342,7 @@ template("ios_app_bundle") {
"bundle_extension",
"extra_system_frameworks",
"data_deps",
+ "deps_filter",
"entitlements_path",
"extra_substitutions",
"info_plist",
@@ -490,6 +492,7 @@ template("ios_app_bundle") {
[
"data_deps",
"deps",
+ "deps_filter",
"public_deps",
"testonly",
"visibility",
@@ -610,6 +613,9 @@ template("ios_app_bundle") {
if (defined(invoker.bundle_deps)) {
assert(invoker.bundle_deps != [], "mark bundle_deps as used")
}
+ if (defined(invoker.deps_filter)) {
+ assert(invoker.deps_filter != [], "mark deps_filter as used")
+ }
}
set_defaults("ios_app_bundle") {
« no previous file with comments | « no previous file | tools/gn/bundle_data.h » ('j') | tools/gn/bundle_data.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698