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

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

Issue 2966163006: Android: Enable depfile for generate_jni_registration() template (Closed)
Patch Set: Created 3 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
« 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 ceffd063af8c8af567f35e1eef20c8e5b700a5a9..d2439152e16762992bb9744d84d7e9fc6065c27f 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -376,6 +376,7 @@ if (enable_java_templates) {
outputs = [
invoker.output,
]
+ depfile = "$target_gen_dir/$target_name.d"
args = [
# This is a list of .sources files.
@@ -383,6 +384,8 @@ if (enable_java_templates) {
"--output",
rebase_path(invoker.output, root_build_dir),
"--no_register_java=$_rebase_exception_java_files",
+ "--depfile",
+ rebase_path(depfile, root_build_dir),
]
}
}
« 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