allwinner_a64/android/external/selinux/secilc/Android.bp
2018-08-08 16:14:42 +08:00

20 lines
332 B
Text

common_CFLAGS = [
"-Wall",
"-Werror",
"-Wshadow",
]
cc_binary {
name: "secilc",
host_supported: true,
cflags: common_CFLAGS,
srcs: ["secilc.c"],
target: {
android: {
static_libs: ["libsepol"],
},
host: {
shared_libs: ["libsepol"],
},
},
}