platform_system_bpf/Android.bp
Elliott Hughes fc3c7690fe C++17 is the default now.
Test: builds
Change-Id: Ieb3cf0a0c035e1b2fcea4a5e80bb0c1df473349f
2018-12-03 09:36:31 -08:00

20 lines
485 B
Text

cc_defaults {
name: "bpf_defaults",
cflags: [
"-Wall",
"-Werror",
"-Wnullable-to-nonnull-conversion",
"-Wthread-safety",
"-Wunused-parameter",
],
tidy: true,
tidy_checks: [
"android-*",
"cert-*",
"clang-analyzer-security*",
"-cert-err34-c",
"clang-analyzer-security*",
// Disabling due to many unavoidable warnings from POSIX API usage.
"-google-runtime-int",
],
}