409731efc1
libneutils is a library which belongs to vndk-cap. Mark it vendor_available to enable vndk abi stability checks on it. Details: https://android-review.googlesource.com/368372 Test: mm -j64 Bug: 38244611 Change-Id: I32938e3e0bcc1e771290d87f561cc06b9b019046
34 lines
468 B
Text
34 lines
468 B
Text
cc_library_shared {
|
|
name: "libnetutils",
|
|
vendor_available: true,
|
|
|
|
srcs: [
|
|
"dhcpclient.c",
|
|
"dhcpmsg.c",
|
|
"ifc_utils.c",
|
|
"packet.c",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
],
|
|
|
|
cflags: ["-Werror"],
|
|
|
|
export_include_dirs: ["include"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "dhcpdbg",
|
|
|
|
srcs: [
|
|
"dhcptool.c",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libnetutils",
|
|
],
|
|
|
|
cflags: ["-Werror"],
|
|
}
|