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

Commit a90d7e9a authored by Hsin-Yi Chen's avatar Hsin-Yi Chen Committed by Automerger Merge Worker
Browse files

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

Merge "Check the ABI of libutils for vendor and product only" into main am: c2b4411b am: 9fa39412

Original change: https://android-review.googlesource.com/c/platform/system/core/+/2736196



Change-Id: Ibf6bd32f57883b4bc93f134c122b12a66d9042ad
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents e43422f2 9fa39412
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 {