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

Unified Diff: android_webview/tools/apk_merger.py

Issue 1624693003: Ignore WebViewPlatformBridge apk when merging apks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: android_webview/tools/apk_merger.py
diff --git a/android_webview/tools/apk_merger.py b/android_webview/tools/apk_merger.py
index c9727d94f041320faf73ab8d9b694dfbf1849c59..e9ea1fe3c39648d2a0bd28524977621435117dd8 100755
--- a/android_webview/tools/apk_merger.py
+++ b/android_webview/tools/apk_merger.py
@@ -173,10 +173,11 @@ def main():
UnpackApk(args.apk_64bit, tmp_dir_64)
UnpackApk(args.apk_32bit, tmp_dir_32)
+ # TODO(sgurun) remove WebViewPlatformBridge.apk from this list crbug/580678
dcmp = filecmp.dircmp(
tmp_dir_64,
tmp_dir_32,
- ignore=['META-INF', 'AndroidManifest.xml'])
+ ignore=['META-INF', 'AndroidManifest.xml', 'WebViewPlatformBridge.apk'])
diff_files = GetDiffFiles(dcmp, tmp_dir_32)
« 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