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:
@@ -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,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -27,5 +27,9 @@ cc_fuzz {
|
||||
"libutils",
|
||||
],
|
||||
},
|
||||
darwin: {
|
||||
// libbinder is not supported on mac
|
||||
enabled: false,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user