blob: e17f08087e5007e8eecabab8ec6f2062a4c711b2 [file] [log] [blame]
Kelvin Zhang1bd2e5b2022-10-03 12:02:34 -07001
Bob Badourc82a7432022-10-27 07:35:05 -07002package {
3 // See: http://go/android-license-faq
4 // A large-scale-change added 'default_applicable_licenses' to import
5 // all of the 'license_kinds' from "system_update_engine_license"
6 // to get the below license kinds:
7 // SPDX-license-identifier-Apache-2.0
8 default_applicable_licenses: ["system_update_engine_license"],
9}
10
Kelvin Zhang1bd2e5b2022-10-03 12:02:34 -070011cc_library {
12 name: "liburing_cpp",
13 host_supported: true,
14 recovery_available: true,
15 srcs: [
16 "src/IoUring.cpp",
17 "src/IoUringSQE.cpp",
18 ],
19 static_libs: [
20 "liburing",
21 ],
Kelvin Zhang1bd2e5b2022-10-03 12:02:34 -070022 export_include_dirs: [
23 "include",
24 ],
25}
26
27
28cc_test_host {
29 name: "liburing_cpp_tests",
30 srcs: [
31 "tests/BasicTests.cpp",
32 "tests/main.cpp",
33 ],
34 static_libs: [
35 "libgtest",
36 "liburing",
37 "liburing_cpp",
38 ],
Bob Badourc82a7432022-10-27 07:35:05 -070039}