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

Commit ca8c7689 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Disable cursorwindow_fuzzer mac build."

parents df2e907e de3a2bc7
Loading
Loading
Loading
Loading
+21 −4
Original line number Diff line number Diff line
@@ -160,10 +160,17 @@ cc_test {
                "tests/ObbFile_test.cpp",
                "tests/PosixUtils_test.cpp",
            ],
            shared_libs: common_test_libs + ["libbinder", "liblog", "libui"],
            shared_libs: common_test_libs + [
                "libbinder",
                "liblog",
                "libui",
            ],
        },
        host: {
            static_libs: common_test_libs + ["liblog", "libz"],
            static_libs: common_test_libs + [
                "liblog",
                "libz",
            ],
        },
    },
    data: [
@@ -204,10 +211,20 @@ cc_library {
    export_include_dirs: ["include"],
    target: {
        android: {
            shared_libs: common_test_libs + ["libbinder", "liblog"],
            shared_libs: common_test_libs + [
                "libbinder",
                "liblog",
            ],
        },
        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 Diff line number Diff line
@@ -27,5 +27,9 @@ cc_fuzz {
                "libutils",
            ],
        },
        darwin: {
            // libbinder is not supported on mac
            enabled: false,
        },
    },
}