You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
582 B
30 lines
582 B
cc_library_shared { |
|
name: "libnetdutils", |
|
srcs: [ |
|
"Fd.cpp", |
|
"Netfilter.cpp", |
|
"Netlink.cpp", |
|
"Slice.cpp", |
|
"Socket.cpp", |
|
"Status.cpp", |
|
"Syscalls.cpp", |
|
"UniqueFd.cpp", |
|
"UniqueFile.cpp", |
|
], |
|
shared_libs: [ |
|
"libbase", |
|
], |
|
export_include_dirs: ["include"], |
|
} |
|
|
|
cc_test { |
|
name: "netdutils_test", |
|
srcs: [ |
|
"SliceTest.cpp", |
|
"StatusTest.cpp", |
|
"FdTest.cpp", |
|
"SyscallsTest.cpp", |
|
], |
|
static_libs: ["libgmock"], |
|
shared_libs: ["libnetdutils"], |
|
}
|
|
|