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

Unified Diff: build/android/rezip/rezip.cc

Issue 595933003: Re-invent page aligning libraries in APK file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: build/android/rezip/rezip.cc
diff --git a/build/android/rezip/rezip.cc b/build/android/rezip/rezip.cc
index ce9bc86c5050fcef5781716eaa2db6a310743223..91273af9b5485c50db1ef4dd9785be85440efb95 100644
--- a/build/android/rezip/rezip.cc
+++ b/build/android/rezip/rezip.cc
@@ -507,6 +507,9 @@ int main(int argc, const char* argv[]) {
check_page_align = true;
} else if (strcmp("rename", action) == 0) {
rename_fun = &RenameLibraryForCrazyLinker;
+ } else if (strcmp("renameinflate", action) == 0) {
+ rename_fun = &RenameLibraryForCrazyLinker;
+ inflate_predicate_fun = &IsLibraryFilename;
rmcilroy 2014/09/29 11:38:32 It looks like this is the only option used by the
Anton 2014/09/29 16:30:17 They are used by the LGPL compliance step of the o
} else if (strcmp("dropdescriptors", action) == 0) {
// Minizip does not know about data descriptors, so the default
// copying action will drop the descriptors. This should be fine

Powered by Google App Engine
This is Rietveld 408576698