blob: bb91849272df7a7ffc7aafb01954e91dd414fd44 [file] [log] [blame]
Elliott Hughes926add12017-03-02 18:56:12 -08001cc_library {
2 name: "libseccomp_policy",
3 srcs: [
4 "seccomp_policy.cpp",
Victor Hsieh4f02dd52017-12-20 09:19:22 -08005 "arm_app_policy.cpp",
Steve Muckleaa3f96c2017-07-20 13:11:54 -07006 "arm_global_policy.cpp",
Victor Hsieh4f02dd52017-12-20 09:19:22 -08007 "arm_system_policy.cpp",
8 "arm64_app_policy.cpp",
Steve Muckleaa3f96c2017-07-20 13:11:54 -07009 "arm64_global_policy.cpp",
Victor Hsieh4f02dd52017-12-20 09:19:22 -080010 "arm64_system_policy.cpp",
11 "x86_app_policy.cpp",
Steve Muckleaa3f96c2017-07-20 13:11:54 -070012 "x86_global_policy.cpp",
Victor Hsieh4f02dd52017-12-20 09:19:22 -080013 "x86_system_policy.cpp",
14 "x86_64_app_policy.cpp",
Steve Muckleaa3f96c2017-07-20 13:11:54 -070015 "x86_64_global_policy.cpp",
Victor Hsieh4f02dd52017-12-20 09:19:22 -080016 "x86_64_system_policy.cpp",
17 "mips_app_policy.cpp",
Steve Muckleaa3f96c2017-07-20 13:11:54 -070018 "mips_global_policy.cpp",
Victor Hsieh4f02dd52017-12-20 09:19:22 -080019 "mips_system_policy.cpp",
20 "mips64_app_policy.cpp",
Steve Muckleaa3f96c2017-07-20 13:11:54 -070021 "mips64_global_policy.cpp",
Victor Hsieh4f02dd52017-12-20 09:19:22 -080022 "mips64_system_policy.cpp",
Elliott Hughes926add12017-03-02 18:56:12 -080023 ],
24 export_include_dirs: ["include"],
Chih-Hung Hsieh84f0dcd2017-10-02 11:47:31 -070025 cflags: ["-Wall", "-Werror"],
Elliott Hughes926add12017-03-02 18:56:12 -080026 shared: {
27 shared_libs: ["libbase"],
28 },
29 static: {
30 static_libs: ["libbase"],
31 },
32}