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

Unified Diff: build/android/gyp/create_dist_jar.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/copy_ex.py ('k') | build/android/gyp/create_java_binary_script.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/create_dist_jar.py
diff --git a/build/android/gyp/create_dist_jar.py b/build/android/gyp/create_dist_jar.py
index 582434f787e7aec80c00e693a2cb402a0c86f465..2206cc64ae98287af495f64f540ce0b127cda66e 100755
--- a/build/android/gyp/create_dist_jar.py
+++ b/build/android/gyp/create_dist_jar.py
@@ -27,9 +27,7 @@ def main(args):
build_utils.MergeZips(options.output, input_jars)
if options.depfile:
- build_utils.WriteDepfile(
- options.depfile,
- input_jars + build_utils.GetPythonDependencies())
+ build_utils.WriteDepfile(options.depfile, options.output, input_jars)
if __name__ == '__main__':
« no previous file with comments | « build/android/gyp/copy_ex.py ('k') | build/android/gyp/create_java_binary_script.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698