Commit 35da8e38 authored by Andrew Grieve's avatar Andrew Grieve Committed by Commit Bot

Fix monochrome_static_initializers when libsketchology_native.so is present

Bug: 1114678
Change-Id: I4880e93b9d0e3b0339cba52e5b50000e9a2c8432
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2354516
Commit-Queue: Andrew Grieve <agrieve@chromium.org>
Commit-Queue: Mohamed Heikal <mheikal@chromium.org>
Auto-Submit: Andrew Grieve <agrieve@chromium.org>
Reviewed-by: default avatarMohamed Heikal <mheikal@chromium.org>
Cr-Commit-Position: refs/heads/master@{#797755}
parent d85655c6
......@@ -146,7 +146,10 @@ def main():
args = parser.parse_args()
# TODO(crbug.com/838414): add support for files included via loadable_modules.
ignored_libs = {'libarcore_sdk_c.so', 'libcrashpad_handler_trampoline.so'}
ignored_libs = {
'libarcore_sdk_c.so', 'libcrashpad_handler_trampoline.so',
'libsketchology_native.so'
}
# The chromium linker doesn't have static initializers, which makes the
# regular check throw. It should not have any.
no_initializers_libs = ['libchromium_android_linker.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