84f0dcd59e
Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: Ic68141a5c50880c485646e38349f94b866267bd9
26 lines
649 B
Text
26 lines
649 B
Text
cc_library {
|
|
name: "libseccomp_policy",
|
|
srcs: [
|
|
"seccomp_policy.cpp",
|
|
"arm_policy.cpp",
|
|
"arm_global_policy.cpp",
|
|
"arm64_policy.cpp",
|
|
"arm64_global_policy.cpp",
|
|
"x86_policy.cpp",
|
|
"x86_global_policy.cpp",
|
|
"x86_64_policy.cpp",
|
|
"x86_64_global_policy.cpp",
|
|
"mips_policy.cpp",
|
|
"mips_global_policy.cpp",
|
|
"mips64_policy.cpp",
|
|
"mips64_global_policy.cpp",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
cflags: ["-Wall", "-Werror"],
|
|
shared: {
|
|
shared_libs: ["libbase"],
|
|
},
|
|
static: {
|
|
static_libs: ["libbase"],
|
|
},
|
|
}
|