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

Unified Diff: build/android/incremental_install/generate_android_manifest.py

Issue 2336173003: Fix android depfiles to always list GN's outputs[0] (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
Index: build/android/incremental_install/generate_android_manifest.py
diff --git a/build/android/incremental_install/generate_android_manifest.py b/build/android/incremental_install/generate_android_manifest.py
index 163b4c34be4b06992d9f4e1cf0112b9627f2ebc8..2ead34f323bb04fc0b069ae423f635d5e85c971a 100755
--- a/build/android/incremental_install/generate_android_manifest.py
+++ b/build/android/incremental_install/generate_android_manifest.py
@@ -101,9 +101,8 @@ def main():
f.write(new_manifest_data)
if options.depfile:
- build_utils.WriteDepfile(
- options.depfile,
- [options.src_manifest] + build_utils.GetPythonDependencies())
+ deps = [options.src_manifest]
+ build_utils.WriteDepfile(options.depfile, options.out_manifest, deps)
if __name__ == '__main__':

Powered by Google App Engine
This is Rietveld 408576698