Merge "Add a libipchecksum that contains the C IP checksum code."

This commit is contained in:
Treehugger Robot 2020-07-09 08:55:16 +00:00 committed by Gerrit Code Review
commit 69b513ce09

View file

@ -23,6 +23,21 @@ cc_library_shared {
export_include_dirs: ["include"],
}
cc_library_static {
name: "libipchecksum",
srcs: [
"checksum.c",
],
cflags: [
"-Wall",
"-Werror",
],
export_include_dirs: ["include"],
}
cc_binary {
name: "dhcpdbg",