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

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

Issue 1373723003: Fix javac --incremental by using jmake for dependency analysis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@aidl
Patch Set: Created 5 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/gyp/util/md5_check.py
diff --git a/build/android/gyp/util/md5_check.py b/build/android/gyp/util/md5_check.py
index 699d3bfe143b278ef55897b4cae46e38e46071c5..a1737137952d6597b1ea6b9c7cbfdd3c2609b8b1 100644
--- a/build/android/gyp/util/md5_check.py
+++ b/build/android/gyp/util/md5_check.py
@@ -12,7 +12,7 @@ import zipfile
# When set and a difference is detected, a diff of what changed is printed.
-_PRINT_MD5_DIFFS = int(os.environ.get('PRINT_MD5_DIFFS', 0))
+PRINT_EXPLANATIONS = int(os.environ.get('PRINT_MD5_DIFFS', 0))
Yaron 2015/09/30 02:19:25 update actually env variable too?
agrieve 2015/10/01 16:26:11 Done.
def CallAndRecordIfStale(
@@ -73,7 +73,7 @@ def CallAndRecordIfStale(
if not changes.HasChanges():
return
- if _PRINT_MD5_DIFFS:
+ if PRINT_EXPLANATIONS:
print '=' * 80
print 'Target is stale: %s' % record_path
print changes.DescribeDifference()

Powered by Google App Engine
This is Rietveld 408576698