blob: fa190bcd4036e624021fcdc2463a23cb81cfd00b [file] [log] [blame]
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_library {
name: "liburingutils",
srcs: [
"src/IOUringSocketHandler.cpp",
],
cflags: [
"-Wall",
"-Werror",
],
export_include_dirs: ["include"],
static_libs: [
"liburing",
],
shared_libs: [
"libbase",
"liblog",
],
tidy: true,
tidy_checks: [
"-*",
"cert-*",
"clang-analyzer-security*",
"android-*",
],
tidy_checks_as_errors: [
"cert-*",
"clang-analyzer-security*",
"android-*",
],
}
cc_test {
name: "IOUringSocketHandler_tests",
test_suites: ["device-tests"],
srcs: [
"src/IOUringSocketHandler_test.cpp",
],
static_libs: [
"liburing",
"liburingutils",
"libbase",
"liblog",
],
}