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

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

Issue 1389663002: GN: Add --depfile to generate_incremental_manifest.py action. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/internal_rules.gni
diff --git a/build/config/android/internal_rules.gni b/build/config/android/internal_rules.gni
index f9cdaf2d781b02e67bbd20340c725f96a45e8ba6..bf905aef301a9c9b7a1657252861b50691648fb8 100644
--- a/build/config/android/internal_rules.gni
+++ b/build/config/android/internal_rules.gni
@@ -763,9 +763,11 @@ template("create_apk") {
_rebased_src_manifest = rebase_path(_android_manifest, root_build_dir)
_rebased_incremental_manifest =
rebase_path(_incremental_android_manifest, root_build_dir)
+ _rebased_depfile = rebase_path(depfile, root_build_dir)
args = [
"--src-manifest=$_rebased_src_manifest",
"--out-manifest=$_rebased_incremental_manifest",
+ "--depfile=$_rebased_depfile",
]
if (disable_incremental_isolated_processes) {
args += [ "--disable-isolated-processes" ]
« 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