Chromium Code Reviews| 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() |