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

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

Issue 1149893018: Fixes for GN Android build inputs/outputs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | build/config/android/rules.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/internal_rules.gni
diff --git a/build/config/android/internal_rules.gni b/build/config/android/internal_rules.gni
index 4fd90d48683146576e4bcf0d6f31245e00b68c92..af2db4423d4974f1be8489a58d932377f071c75f 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -668,6 +668,9 @@ template("create_apk") {
deps = [
":${_package_resources_target_name}",
]
+ if (defined(invoker.deps)) {
+ deps += invoker.deps
+ }
depfile = "$target_gen_dir/$target_name.d"
inputs = [
@@ -1245,6 +1248,9 @@ template("process_resources") {
if (defined(invoker.args)) {
args += invoker.args
}
+ if (defined(invoker.deps)) {
+ deps = invoker.deps
+ }
}
}
« no previous file with comments | « no previous file | build/config/android/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698