platform_external_selinux/secilc/Android.bp
Jeff Vander Stoep dfb7841f31 secilc: Migrate to soong
Bug: 37512442
Test: build and boot Marlin
Change-Id: Ie02b3dc3db0e597c9ac7e93c6684fcd7867c531e
2017-05-09 16:18:42 +00: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"],
},
},
}