xref: /aosp_15_r20/system/extras/runconuid/Android.bp (revision 288bf5226967eb3dac5cce6c939ccc2a7f2b4fe5)
1package {
2    default_applicable_licenses: ["system_extras_runconuid_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8    name: "system_extras_runconuid_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: "runconuid",
20
21    cflags: [
22        "-Wall",
23        "-Werror",
24    ],
25
26    srcs: ["runconuid.cpp"],
27
28    shared_libs: ["libselinux"],
29}
30