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

Unified Diff: build/android/gyp/find_sun_tools_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/emma_instr.py ('k') | build/android/gyp/gcc_preprocess.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/find_sun_tools_jar.py
diff --git a/build/android/gyp/find_sun_tools_jar.py b/build/android/gyp/find_sun_tools_jar.py
index 2f15a154abd8915f0e124e1d129a830ae57aa784..7cd4c33984cea6897275da59cb70e0e420f29a0d 100755
--- a/build/android/gyp/find_sun_tools_jar.py
+++ b/build/android/gyp/find_sun_tools_jar.py
@@ -35,9 +35,7 @@ def main():
shutil.copyfile(sun_tools_jar_path, args.output)
if args.depfile:
- build_utils.WriteDepfile(
- args.depfile,
- [sun_tools_jar_path] + build_utils.GetPythonDependencies())
+ build_utils.WriteDepfile(args.depfile, args.output, [sun_tools_jar_path])
def FindSunToolsJarPath():
« no previous file with comments | « build/android/gyp/emma_instr.py ('k') | build/android/gyp/gcc_preprocess.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698