platform_system_core/watchdogd/Android.bp
Tom Cherry 40acb379cd Move watchdogd out of init
We're moving past a world where static executables are needed,
including watchdogd, so treat this like any other executable and place
it in /system/bin.

Bug: 73660730
Test: watchdogd still runs
Change-Id: I1f7508fd55dce6e9ee72a6ab7a085011a76c0053
2018-08-02 12:25:58 -07:00

14 lines
278 B
Text

cc_binary {
name: "watchdogd",
recovery_available: true,
srcs: ["watchdogd.cpp"],
cflags: [
"-Wall",
"-Wextra",
"-Werror",
],
shared_libs: ["libbase"],
sanitize: {
misc_undefined: ["signed-integer-overflow"],
},
}