blob: 2296f7ea7ea1583b17c59d3e6e9dcab42da8024d [file] [log] [blame]
Kelvin Zhang1bd2e5b2022-10-03 12:02:34 -07001
2cc_library {
3 name: "liburing_cpp",
4 host_supported: true,
5 recovery_available: true,
6 srcs: [
7 "src/IoUring.cpp",
8 "src/IoUringSQE.cpp",
9 ],
10 static_libs: [
11 "liburing",
12 ],
13 include_dirs: ["bionic/libc/kernel"],
14 export_include_dirs: [
15 "include",
16 ],
17}
18
19
20cc_test_host {
21 name: "liburing_cpp_tests",
22 srcs: [
23 "tests/BasicTests.cpp",
24 "tests/main.cpp",
25 ],
26 static_libs: [
27 "libgtest",
28 "liburing",
29 "liburing_cpp",
30 ],
31}