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

Unified Diff: android_webview/tools/apk_merger.py

Issue 1877413004: Revert "Ignore WebViewPlatformBridge apk when merging apks" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 | 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 55f49515a0218f6517f01a5e605dc9d15b99fabe..4579285218b757672bab7504b9a3327db4d33a74 100755
--- a/android_webview/tools/apk_merger.py
+++ b/android_webview/tools/apk_merger.py
@@ -201,11 +201,10 @@ def MergeApk(args, tmp_apk, tmp_dir_32, tmp_dir_64):
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', 'WebViewPlatformBridge.apk'])
+ ignore=['META-INF', 'AndroidManifest.xml'])
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