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

Unified Diff: remoting/host/installer/BUILD.gn

Issue 2670833004: Use a depfile to know when to regenerate notice files (Closed)
Patch Set: Created 3 years, 11 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: remoting/host/installer/BUILD.gn
diff --git a/remoting/host/installer/BUILD.gn b/remoting/host/installer/BUILD.gn
index 1004128f17fa2a26304da072cb82c839e0a54880..fc19aa790b7950d5889db640da8ab2fa6e604129 100644
--- a/remoting/host/installer/BUILD.gn
+++ b/remoting/host/installer/BUILD.gn
@@ -11,6 +11,7 @@ action("credits") {
# be at the same location.
about_credits_file = "$root_build_dir/gen/remoting/CREDITS.txt"
script = "//tools/licenses.py"
+ depfile = "$target_gen_dir/$target_name.d"
inputs = [
"credits.tmpl",
@@ -28,5 +29,7 @@ action("credits") {
rebase_path("credits.tmpl", root_build_dir),
"--entry-template",
rebase_path("credits_entry.tmpl", root_build_dir),
+ "--depfile",
+ rebase_path(depfile, root_build_dir),
]
}

Powered by Google App Engine
This is Rietveld 408576698