Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e474f21a authored by Hsin-Yi Chen's avatar Hsin-Yi Chen
Browse files

Check the ABI of libutils for vendor and product only

It is not necessary to compare the dumps with the library installed in
system partition.

Test: m out/target/product/generic_x86_64/lsdump_paths.txt
Bug: 280008249
Change-Id: I8fc39ad17d37cd43bf1d77ba23dde55d05dadce1
parent 18560efc
Loading
Loading
Loading
Loading
+15 −4
Original line number Diff line number Diff line
@@ -185,11 +185,22 @@ cc_library {
        support_system_process: true,
    },

    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"],
            },
        },
    },
}

cc_library {