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 44 target: { 45 darwin: { 46 enabled: false, 47 }, 48 linux_glibc: { 49 local_include_dirs: [ 50 "include/linux-private", 51 ], 52 }, 53 host: { 54 srcs: [ 55 "lib/route/link/macvlan.c", 56 ], 57 }, 58 }, 59 60 srcs: [ 61 "lib/*.c", 62 "lib/fib_lookup/lookup.c", 63 "lib/fib_lookup/request.c", 64 "lib/genl/ctrl.c", 65 "lib/genl/family.c", 66 "lib/genl/genl.c", 67 "lib/genl/mngt.c", 68 "lib/netfilter/nfnl.c", 69 "lib/route/addr.c", 70 "lib/route/link.c", 71 "lib/route/link/api.c", 72 "lib/route/link/macsec.c", 73 "lib/route/link/sriov.c", 74 "lib/route/link/vlan.c", 75 "lib/route/nexthop.c", 76 "lib/route/nexthop_encap.c", 77 "lib/route/nh_encap_mpls.c", 78 "lib/route/route.c", 79 "lib/route/route_obj.c", 80 "lib/route/route_utils.c", 81 "lib/route/rtnl.c", 82 ], 83 84 local_include_dirs: [ 85 "include", 86 "lib/route", 87 ], 88 export_include_dirs: ["include"], 89 cflags: [ 90 "-D_BSD_SOURCE", 91 "-Wall", 92 "-Werror", 93 "-Wno-unused-parameter", 94 "-Wno-sign-compare", 95 "-Wno-missing-field-initializers", 96 "-Wno-tautological-compare", 97 "-Wno-pointer-arith", 98 "-UNDEBUG", 99 "-D_GNU_SOURCE", 100 "-D_NL_SYSCONFDIR_LIBNL=\"\\\"/etc/libnl\\\"\"", 101 ], 102 103 sanitize: { 104 integer_overflow: true, 105 blocklist: "libnl_blocklist.txt", 106 }, 107 apex_available: [ 108 "//apex_available:platform", 109 "com.android.virt", 110 ], 111} 112