blob: bd7d7b8ad0ff8417abede83f9ebaad6574bd4fb9 [file] [log] [blame]
package {
default_applicable_licenses: ["hardware_interfaces_license"],
}
cc_library_static {
name: "android.hardware.bluetooth.async",
vendor_available: true,
host_supported: true,
srcs: [
"async_fd_watcher.cc",
],
export_include_dirs: ["."],
shared_libs: [
"liblog",
],
cflags: [
"-Wall",
"-Werror",
],
}
cc_test {
name: "bluetooth-vendor-interface-async-test",
host_supported: true,
srcs: [
"test/async_fd_watcher_unittest.cc",
],
shared_libs: [
"liblog",
"libutils",
],
static_libs: [
"android.hardware.bluetooth.async",
"libgmock",
],
cflags: [
"-Wall",
"-Werror",
],
test_suites: ["general-tests"],
}