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

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

Issue 1894013002: 🐟 Make Android Lint use interface jars (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ijar-update
Patch Set: Created 4 years, 8 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 | build/config/android/internal_rules.gni » ('j') | 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 d2602893805bc500837d14c6c779a72d64e5cb65..7c32bc1b9484affc2aae793e26eb2cd239e507d5 100644
--- a/build/android/gyp/util/build_utils.py
+++ b/build/android/gyp/util/build_utils.py
@@ -337,9 +337,6 @@ def MergeZips(output, inputs, exclude_patterns=None, path_transform=None):
# Ignore directories.
if info.filename[-1] == '/':
continue
- # Don't validate CRCs. ijar sets them all to 0.
- if hasattr(info, 'CRC'):
- del info.CRC
dst_name = path_transform(info.filename, in_file)
already_added = dst_name in added_names
if not already_added and not MatchesGlob(dst_name, exclude_patterns):
« no previous file with comments | « no previous file | build/config/android/internal_rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698