Chromium Code Reviews| 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 |