Commit cfb77c2b authored by Andrew Grieve's avatar Andrew Grieve Committed by Commit Bot

Android: Allow library_always_compress and library_renames to be set by invokers

Bug: 1111004
Change-Id: I0287c7096017b440704d3e79ea6768fd0cf21fe0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2327612
Auto-Submit: Andrew Grieve <agrieve@chromium.org>
Commit-Queue: Peter Kotwicz <pkotwicz@chromium.org>
Reviewed-by: default avatarPeter Kotwicz <pkotwicz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#793162}
parent 4e980462
......@@ -274,14 +274,20 @@ template("chrome_public_common_apk_or_module_tmpl") {
loadable_modules = []
}
loadable_modules += [ "$root_out_dir/libchrome_crashpad_handler.so" ]
library_always_compress = [
if (!defined(library_always_compress)) {
library_always_compress = []
}
library_always_compress += [
"libchrome_crashpad_handler.so",
"libchromium_android_linker.so",
]
# Adds "crazy." prefix to avoid libraries being extracted when installed.
if (use_chromium_linker) {
library_renames = [
if (!defined(library_renames)) {
library_renames = []
}
library_renames += [
"libchrome.so",
"libchromefortest.so",
]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment