1// Copyright 2013 The Android Open Source Project
2
3package {
4    default_applicable_licenses: ["system_extras_taskstats_license"],
5}
6
7// Added automatically by a large-scale-change
8// See: http://go/android-license-faq
9license {
10    name: "system_extras_taskstats_license",
11    visibility: [":__subpackages__"],
12    license_kinds: [
13        "SPDX-license-identifier-Apache-2.0",
14    ],
15    license_text: [
16        "NOTICE",
17    ],
18}
19
20cc_binary {
21    name: "taskstats",
22
23    srcs: ["taskstats.c"],
24
25    shared_libs: ["libnl"],
26
27    cflags: [
28        "-Wall",
29        "-Werror",
30    ],
31}
32