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

Unified Diff: build/android/gyp/util/build_utils.py

Issue 2061573002: Use contents of python deps to get md5 stamp instead of paths only (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/android/gyp/util/build_utils.py
diff --git a/build/android/gyp/util/build_utils.py b/build/android/gyp/util/build_utils.py
index d5f5621f05bed5045e14dc1841016dfbeaeecdc1..371ad9021648d1651abdb1d0150ad4ee88562f41 100644
--- a/build/android/gyp/util/build_utils.py
+++ b/build/android/gyp/util/build_utils.py
@@ -499,9 +499,7 @@ def CallAndWriteDepfileIfStale(function, options, record_path=None,
python_deps = None
if hasattr(options, 'depfile') and options.depfile:
python_deps = GetPythonDependencies()
- # List python deps in input_strings rather than input_paths since the
- # contents of them does not change what gets written to the depfile.
- input_strings += python_deps
+ input_paths += python_deps
output_paths += [options.depfile]
stamp_file = hasattr(options, 'stamp') and options.stamp
« 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