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
This commit is contained in:
Brett Chabot
2020-11-04 08:59:06 -08:00
parent ff280720f6
commit de3a2bc7a0
2 changed files with 25 additions and 4 deletions

View File

@@ -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,
},
},
}

View File

@@ -27,5 +27,9 @@ cc_fuzz {
"libutils",
],
},
darwin: {
// libbinder is not supported on mac
enabled: false,
},
},
}