xref: /aosp_15_r20/tools/security/sanitizer-status/Android.bp (revision d9ecfb0f4d734c9ce41cde8ac4d585b094fd4222)
1package {
2    default_applicable_licenses: ["tools_security_sanitizer-status_license"],
3}
4
5// Added automatically by a large-scale-change
6// http://go/android-license-faq
7license {
8    name: "tools_security_sanitizer-status_license",
9    visibility: [":__subpackages__"],
10    license_kinds: [
11        "SPDX-license-identifier-Apache-2.0",
12    ],
13    license_text: [
14        "NOTICE",
15    ],
16}
17
18cc_binary {
19    name: "sanitizer-status",
20
21    srcs: ["sanitizer-status.cpp"],
22    cflags: [
23        "-Wall",
24        "-Werror",
25        "-O0",
26    ],
27
28    header_libs: [
29        "bionic_libc_platform_headers",
30    ],
31
32    sanitize: {
33        memtag_heap: true,
34    },
35}
36