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

Commit de3a2bc7 authored by Brett Chabot's avatar Brett Chabot
Browse files

Disable cursorwindow_fuzzer mac build.

Its libbinder dependency is not supported on mac.

Bug: 172023026
Test: m -j libandroidfw_fuzzer_lib cursorwindow_fuzzer
Change-Id: I94c23c7952db7dd278f24ccb239d63f3c76e7a8e
parent ff280720
Loading
Loading
Loading
Loading
+21 −4
Original line number Original line Diff line number Diff line
@@ -160,10 +160,17 @@ cc_test {
                "tests/ObbFile_test.cpp",
                "tests/ObbFile_test.cpp",
                "tests/PosixUtils_test.cpp",
                "tests/PosixUtils_test.cpp",
            ],
            ],
            shared_libs: common_test_libs + ["libbinder", "liblog", "libui"],
            shared_libs: common_test_libs + [
                "libbinder",
                "liblog",
                "libui",
            ],
        },
        },
        host: {
        host: {
            static_libs: common_test_libs + ["liblog", "libz"],
            static_libs: common_test_libs + [
                "liblog",
                "libz",
            ],
        },
        },
    },
    },
    data: [
    data: [
@@ -204,10 +211,20 @@ cc_library {
    export_include_dirs: ["include"],
    export_include_dirs: ["include"],
    target: {
    target: {
        android: {
        android: {
            shared_libs: common_test_libs + ["libbinder", "liblog"],
            shared_libs: common_test_libs + [
                "libbinder",
                "liblog",
            ],
        },
        },
        host: {
        host: {
            static_libs: common_test_libs + ["libbinder", "liblog"],
            static_libs: common_test_libs + [
                "libbinder",
                "liblog",
            ],
        },
        darwin: {
            // libbinder is not supported on mac
            enabled: false,
        },
        },
    },
    },
}
}
+4 −0
Original line number Original line Diff line number Diff line
@@ -27,5 +27,9 @@ cc_fuzz {
                "libutils",
                "libutils",
            ],
            ],
        },
        },
        darwin: {
            // libbinder is not supported on mac
            enabled: false,
        },
    },
    },
}
}