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

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

Issue 2321773003: Allow jinja_template_resources to have deps (Closed)
Patch Set: Created 4 years, 3 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/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index b3b0fdcf9b8c90ab41e44a94024c09dc2df9f868..816d0330062c4a3fa4bffa4269baa6670f137acc 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -567,9 +567,13 @@ if (enable_java_templates) {
build_config = _build_config
resources_zip = _resources_zip
type = "android_resources"
+ if (defined(invoker.deps)) {
+ possible_config_deps = invoker.deps
+ }
}
action("${target_name}__template") {
+ forward_variables_from(invoker, [ "deps" ])
sources = invoker.resources
script = "//build/android/gyp/jinja_template.py"
depfile = "$target_gen_dir/$target_name.d"
« 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