platform_system_core/libnetutils/Android.bp
Remi NGUYEN VAN 6297b730d2 Add apex_available to libnetutils
The library is included by the tethering module, and was allowlisted
for compatibility purposes, but needs to have the rule applied.

Bug: 171540887
Test: m
Change-Id: Ic02c559d6e82fb41c33ba723bd06ef708e7baaa9
2020-11-05 18:40:31 +09:00

58 lines
911 B
Text

cc_library_shared {
name: "libnetutils",
vendor_available: true,
vndk: {
enabled: true,
},
srcs: [
"checksum.c",
"dhcpclient.c",
"dhcpmsg.c",
"ifc_utils.c",
"packet.c",
],
shared_libs: [
"libcutils",
"liblog",
],
cflags: ["-Werror"],
export_include_dirs: ["include"],
// TODO: remove connectivity module dependency, or have this lib build against the ndk
apex_available: [
"//apex_available:platform",
"com.android.tethering",
],
}
cc_library_static {
name: "libipchecksum",
srcs: [
"checksum.c",
],
cflags: [
"-Wall",
"-Werror",
],
export_include_dirs: ["include"],
}
cc_binary {
name: "dhcpdbg",
srcs: [
"dhcptool.c",
],
shared_libs: [
"libnetutils",
],
cflags: ["-Werror"],
}