blob: e198415a177f62ff0a1462ca4df92ae62dca6adc [file] [log] [blame]
Bob Badour4e060082021-02-16 18:59:28 -08001package {
2 default_applicable_licenses: ["system_extras_ANRdaemon_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8 name: "system_extras_ANRdaemon_license",
9 visibility: [":__subpackages__"],
10 license_kinds: [
11 "SPDX-license-identifier-BSD",
12 ],
Bob Badour09ae07b2021-06-18 13:07:07 -070013 license_text: ["LICENSE"],
Bob Badour4e060082021-02-16 18:59:28 -080014}
15
Dan Willemsen2a904af2018-05-04 18:35:50 -070016cc_binary {
17 name: "anrd",
18 srcs: ["ANRdaemon.cpp"],
19 cflags: [
20 "-Wall",
21 "-Werror",
22 ],
23
24 shared_libs: [
25 "liblog",
26 "libbinder",
27 "libcutils",
28 "libutils",
29 "libz",
30 ],
31}