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

Commit 92423198 authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder fuzzers: static on host

cc_fuzz binaries don't have their linker paths setup to load libraries
from the Android build.

Bug: 200368820
Test: run some of these fuzzers on host
Change-Id: I009725410dd78fa6078dcc8b8420015192f70695
parent 10717131
Loading
Loading
Loading
Loading
+19 −7
Original line number Diff line number Diff line
@@ -30,16 +30,28 @@ cc_defaults {
        "-Wall",
        "-Werror",
    ],
    target: {
        android: {
            shared_libs: [
                "libcutils",
                "libutils",
                "libbase",
                "libbinder",
            ],
        },
        host: {
            static_libs: [
                "libcutils",
                "liblog",
                "libutils",
                "libbase",
                "libbinder",
            ],
    target: {
        },
        darwin: {
            enabled: false,
        }
    }
        },
    },
}

cc_fuzz {