Merge "Check the ABI of libutils for vendor and product only" into main

This commit is contained in:
Hsin-Yi Chen 2023-09-06 02:43:32 +00:00 committed by Gerrit Code Review
commit c2b4411b43

View file

@ -185,10 +185,21 @@ cc_library {
support_system_process: true,
},
header_abi_checker: {
// AFDO affects weak symbols.
diff_flags: ["-allow-adding-removing-weak-symbols"],
ref_dump_dirs: ["abi-dumps"],
target: {
product: {
header_abi_checker: {
// AFDO affects weak symbols.
diff_flags: ["-allow-adding-removing-weak-symbols"],
ref_dump_dirs: ["abi-dumps"],
},
},
vendor: {
header_abi_checker: {
// AFDO affects weak symbols.
diff_flags: ["-allow-adding-removing-weak-symbols"],
ref_dump_dirs: ["abi-dumps"],
},
},
},
}