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

Unified Diff: build/android/gyp/generate_split_manifest.py

Issue 2336173003: Fix android depfiles to always list GN's outputs[0] (Closed)
Patch Set: fix cronet_package 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
« no previous file with comments | « build/android/gyp/gcc_preprocess.py ('k') | build/android/gyp/jar_toc.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/generate_split_manifest.py
diff --git a/build/android/gyp/generate_split_manifest.py b/build/android/gyp/generate_split_manifest.py
index 9cb3bca4b55f894fc1a9293eed7360b7500a0c6f..daa8f67c1b32b6610595916b5e44e45d33226443 100755
--- a/build/android/gyp/generate_split_manifest.py
+++ b/build/android/gyp/generate_split_manifest.py
@@ -88,9 +88,8 @@ def main():
f.write(split_manifest)
if options.depfile:
- build_utils.WriteDepfile(
- options.depfile,
- [options.main_manifest] + build_utils.GetPythonDependencies())
+ deps = [options.main_manifest]
+ build_utils.WriteDepfile(options.depfile, options.out_manifest, deps)
if __name__ == '__main__':
« no previous file with comments | « build/android/gyp/gcc_preprocess.py ('k') | build/android/gyp/jar_toc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698