blob: f4046a36aa864e37515bddde13cfda7989481a15 [file] [log] [blame]
Joel Scherpelzf3fa5cc2017-05-22 12:30:03 +09001cc_library_shared {
2 name: "libnetdutils",
3 srcs: [
4 "Status.cpp",
5 "Fd.cpp",
6 "UniqueFd.cpp",
7 "Syscalls.cpp",
8 "Netfilter.cpp",
9 "Netlink.cpp",
10 "Slice.cpp",
11 ],
12 shared_libs: [
13 "libbase",
14 ],
15 export_include_dirs: ["include"],
16}
17
18cc_test {
19 name: "netdutils_test",
20 srcs: [
21 "SliceTest.cpp",
22 "StatusTest.cpp",
23 "FdTest.cpp",
24 "SyscallsTest.cpp",
25 ],
26 static_libs: ["libgmock"],
27 shared_libs: ["libnetdutils"],
28}