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

Unified Diff: build/android/incremental_install/generate_android_manifest.py

Issue 2488443003: Force android:extractNativeLibs="false" for incremental apks (Closed)
Patch Set: Created 4 years, 1 month 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: build/android/incremental_install/generate_android_manifest.py
diff --git a/build/android/incremental_install/generate_android_manifest.py b/build/android/incremental_install/generate_android_manifest.py
index 2ead34f323bb04fc0b069ae423f635d5e85c971a..15c758dcc6cea21ad9e38bff02bc72cd700c4d17 100755
--- a/build/android/incremental_install/generate_android_manifest.py
+++ b/build/android/incremental_install/generate_android_manifest.py
@@ -68,6 +68,10 @@ def _ProcessManifest(main_manifest, disable_isolated_processes):
main_manifest = main_manifest.replace('isolatedProcess="true"',
'isolatedProcess="false"')
+ # Disable check for page-aligned native libraries.
+ main_manifest = main_manifest.replace('extractNativeLibs="false"',
+ 'extractNativeLibs="true"')
+
doc = ElementTree.fromstring(main_manifest)
app_node = doc.find('application')
if app_node is None:
« 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