Elliott Hughes | 926add1 | 2017-03-02 18:56:12 -0800 | [diff] [blame] | 1 | cc_library { |
| 2 | name: "libseccomp_policy", |
| 3 | srcs: [ |
| 4 | "seccomp_policy.cpp", |
Victor Hsieh | 4f02dd5 | 2017-12-20 09:19:22 -0800 | [diff] [blame^] | 5 | "arm_app_policy.cpp", |
Steve Muckle | aa3f96c | 2017-07-20 13:11:54 -0700 | [diff] [blame] | 6 | "arm_global_policy.cpp", |
Victor Hsieh | 4f02dd5 | 2017-12-20 09:19:22 -0800 | [diff] [blame^] | 7 | "arm_system_policy.cpp", |
| 8 | "arm64_app_policy.cpp", |
Steve Muckle | aa3f96c | 2017-07-20 13:11:54 -0700 | [diff] [blame] | 9 | "arm64_global_policy.cpp", |
Victor Hsieh | 4f02dd5 | 2017-12-20 09:19:22 -0800 | [diff] [blame^] | 10 | "arm64_system_policy.cpp", |
| 11 | "x86_app_policy.cpp", |
Steve Muckle | aa3f96c | 2017-07-20 13:11:54 -0700 | [diff] [blame] | 12 | "x86_global_policy.cpp", |
Victor Hsieh | 4f02dd5 | 2017-12-20 09:19:22 -0800 | [diff] [blame^] | 13 | "x86_system_policy.cpp", |
| 14 | "x86_64_app_policy.cpp", |
Steve Muckle | aa3f96c | 2017-07-20 13:11:54 -0700 | [diff] [blame] | 15 | "x86_64_global_policy.cpp", |
Victor Hsieh | 4f02dd5 | 2017-12-20 09:19:22 -0800 | [diff] [blame^] | 16 | "x86_64_system_policy.cpp", |
| 17 | "mips_app_policy.cpp", |
Steve Muckle | aa3f96c | 2017-07-20 13:11:54 -0700 | [diff] [blame] | 18 | "mips_global_policy.cpp", |
Victor Hsieh | 4f02dd5 | 2017-12-20 09:19:22 -0800 | [diff] [blame^] | 19 | "mips_system_policy.cpp", |
| 20 | "mips64_app_policy.cpp", |
Steve Muckle | aa3f96c | 2017-07-20 13:11:54 -0700 | [diff] [blame] | 21 | "mips64_global_policy.cpp", |
Victor Hsieh | 4f02dd5 | 2017-12-20 09:19:22 -0800 | [diff] [blame^] | 22 | "mips64_system_policy.cpp", |
Elliott Hughes | 926add1 | 2017-03-02 18:56:12 -0800 | [diff] [blame] | 23 | ], |
| 24 | export_include_dirs: ["include"], |
Chih-Hung Hsieh | 84f0dcd | 2017-10-02 11:47:31 -0700 | [diff] [blame] | 25 | cflags: ["-Wall", "-Werror"], |
Elliott Hughes | 926add1 | 2017-03-02 18:56:12 -0800 | [diff] [blame] | 26 | shared: { |
| 27 | shared_libs: ["libbase"], |
| 28 | }, |
| 29 | static: { |
| 30 | static_libs: ["libbase"], |
| 31 | }, |
| 32 | } |