You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.6 KiB
90 lines
2.6 KiB
package {
|
|
default_applicable_licenses: ["system_netd_license"],
|
|
}
|
|
|
|
// Added automatically by a large-scale-change
|
|
// See: http://go/android-license-faq
|
|
license {
|
|
name: "system_netd_license",
|
|
visibility: [":__subpackages__"],
|
|
license_kinds: [
|
|
"SPDX-license-identifier-Apache-2.0",
|
|
],
|
|
license_text: [
|
|
"NOTICE",
|
|
],
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libnetd_client_headers",
|
|
export_include_dirs: ["include"],
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.tethering",
|
|
],
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libnetdbinder_utils_headers",
|
|
export_include_dirs: ["include/binder_utils"],
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.resolv",
|
|
],
|
|
min_sdk_version: "29",
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "netd_defaults",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
// Override -Wno-error=implicit-fallthrough from soong
|
|
"-Werror=implicit-fallthrough",
|
|
"-Werror=sometimes-uninitialized",
|
|
"-Werror=conditional-uninitialized",
|
|
"-Wnullable-to-nonnull-conversion",
|
|
"-Wsign-compare",
|
|
"-Wthread-safety",
|
|
"-Wunused-parameter",
|
|
"-Wuninitialized",
|
|
],
|
|
tidy: true,
|
|
cpp_std: "experimental",
|
|
tidy_checks: [
|
|
"android-*",
|
|
"bugprone-*",
|
|
"cert-*",
|
|
"clang-analyzer-security*",
|
|
"google-*",
|
|
"misc-*",
|
|
"performance-*",
|
|
"-bugprone-macro-parentheses",
|
|
"-bugprone-narrowing-conversions", // lots of unsigned -> int conversions
|
|
"-bugprone-unhandled-self-assignment", // found in DnsResolver/stats.pb.h
|
|
"-cert-dcl50-cpp",
|
|
"-cert-err34-c", // TODO: re-enable after removing atoi() and sscanf() calls
|
|
"-cert-oop54-cpp", // found in DnsResolver/stats.pb.h
|
|
"-google-default-arguments",
|
|
"-google-explicit-constructor",
|
|
"-google-global-names-in-headers",
|
|
"-google-readability-*", // Too pedantic
|
|
"-google-runtime-int", // Too many unavoidable warnings due to strtol()
|
|
"-google-runtime-references", // Grandfathered usage of pass by non-const reference
|
|
"-misc-non-private-member-variables-in-classes", // Also complains about structs
|
|
"-performance-noexcept-move-constructor",
|
|
"-performance-unnecessary-value-param",
|
|
"-performance-no-int-to-ptr",
|
|
],
|
|
tidy_flags: [
|
|
"-warnings-as-errors="
|
|
+ "android-*,"
|
|
+ "bugprone-*,"
|
|
+ "cert-*,"
|
|
+ "clang-analyzer-security*,"
|
|
+ "google-*,"
|
|
+ "misc-*,"
|
|
+ "performance-*"
|
|
],
|
|
}
|