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

Commit 614cc243 authored by Steven Moreland's avatar Steven Moreland
Browse files

servicemanager_fuzzer: fix ODR

libbinder was statically included
from service defaults and shared included by
servicemanager_defaults. For some reason, this
worked before, but it is now broken.

Bug: N/A
Test: N/A
Change-Id: I69a037eb8f2f80b7832cba88ae94d618af3dca44
parent ecf37287
Loading
Loading
Loading
Loading
+15 −1
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@ cc_defaults {

    shared_libs: [
        "libbase",
        "libbinder", // also contains servicemanager_interface
        "libvintf",
        "libcutils",
        "liblog",
@@ -33,6 +32,21 @@ cc_defaults {
    ],

    target: {
        android: {
            shared_libs: [
                "libbinder",
                "libutils",
            ],
        },
        host: {
            static_libs: [
                "libbinder",
                "libutils",
            ],
        },
        darwin: {
            enabled: false,
        },
        vendor: {
            exclude_shared_libs: ["libvintf"],
        },