• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2package {
3    default_applicable_licenses: ["external_libnl_license"],
4}
5
6// Added automatically by a large-scale-change that took the approach of
7// 'apply every license found to every target'. While this makes sure we respect
8// every license restriction, it may not be entirely correct.
9//
10// e.g. GPL in an MIT project might only apply to the contrib/ directory.
11//
12// Please consider splitting the single license below into multiple licenses,
13// taking care not to lose any license_kind information, and overriding the
14// default license using the 'licenses: [...]' property on targets as needed.
15//
16// For unused files, consider creating a 'fileGroup' with "//visibility:private"
17// to attach the license to, and including a comment whether the files may be
18// used in the current project.
19// See: http://go/android-license-faq
20license {
21    name: "external_libnl_license",
22    visibility: [":__subpackages__"],
23    license_kinds: [
24        "SPDX-license-identifier-BSD",
25        "SPDX-license-identifier-GPL",
26        "SPDX-license-identifier-GPL-2.0",
27        "SPDX-license-identifier-GPL-3.0",
28        "SPDX-license-identifier-LGPL",
29        "SPDX-license-identifier-LGPL-2.1",
30        "SPDX-license-identifier-LGPL-3.0",
31        "legacy_unencumbered",
32    ],
33    license_text: [
34        "COPYING",
35    ],
36}
37
38cc_library {
39    name: "libnl",
40    host_supported: true,
41    vendor_available: true,
42    product_available: true,
43    vndk: {
44        enabled: true,
45    },
46
47    target: {
48        darwin: {
49            enabled: false,
50        },
51        linux_glibc: {
52            local_include_dirs: [
53                "include/linux-private",
54            ],
55        },
56        host: {
57            srcs: [
58                "lib/route/link.c",
59                "lib/route/link/api.c",
60                "lib/route/link/macvlan.c",
61                "lib/route/link/sriov.c",
62            ],
63        },
64    },
65
66    srcs: [
67        "lib/*.c",
68        "lib/fib_lookup/lookup.c",
69        "lib/fib_lookup/request.c",
70        "lib/genl/ctrl.c",
71        "lib/genl/family.c",
72        "lib/genl/genl.c",
73        "lib/genl/mngt.c",
74        "lib/netfilter/nfnl.c",
75        "lib/route/route_utils.c",
76        "lib/route/rtnl.c",
77    ],
78
79    local_include_dirs: [
80        "include",
81    ],
82    export_include_dirs: ["include"],
83    cflags: [
84        "-D_BSD_SOURCE",
85        "-Wall",
86        "-Werror",
87        "-Wno-unused-parameter",
88        "-Wno-sign-compare",
89        "-Wno-missing-field-initializers",
90        "-Wno-tautological-compare",
91        "-Wno-pointer-arith",
92        "-UNDEBUG",
93        "-D_GNU_SOURCE",
94        "-DSYSCONFDIR=\"\\\"/etc/libnl\\\"\"",
95    ],
96
97    sanitize: {
98        integer_overflow: true,
99    },
100    apex_available: [
101        "//apex_available:platform",
102        "com.android.virt",
103    ],
104}
105