dfb7841f31
Bug: 37512442 Test: build and boot Marlin Change-Id: Ie02b3dc3db0e597c9ac7e93c6684fcd7867c531e
20 lines
332 B
Text
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"],
|
|
},
|
|
},
|
|
}
|