aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: 4a73168eabff9272b2689b8b23640467d58600f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cc_library_shared {
    name: "libnfnetlink",
    export_include_dirs: ["include"],
    vendor: true,
    srcs: [
        "src/iftable.c",
        "src/libnfnetlink.c",
        "src/rtnl.c",
    ],
    cflags: [
        "-Wall",
        "-Werror",
        "-Wno-error=pointer-sign",
        "-Wno-sign-compare",
        "-Wno-unused-parameter",
        "-Wno-pointer-arith",
    ],
}