summaryrefslogtreecommitdiff
path: root/watchdogd/Android.bp
blob: 03882082f56c5b9b79c00f14eb521b05c83d652c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

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