blob: 332f858e92e94da829e2086ae593d5918d4334a9 [file] [log] [blame]
Dan Willemsend9608942018-11-16 16:08:45 -08001// bugreportz
2// ==========
Bob Badour3306e492021-02-25 15:35:37 -08003package {
4 // See: http://go/android-license-faq
5 // A large-scale-change added 'default_applicable_licenses' to import
6 // all of the 'license_kinds' from "frameworks_native_license"
7 // to get the below license kinds:
8 // SPDX-license-identifier-Apache-2.0
9 default_applicable_licenses: ["frameworks_native_license"],
10}
11
Dan Willemsend9608942018-11-16 16:08:45 -080012cc_binary {
13 name: "bugreportz",
14
15 srcs: [
16 "bugreportz.cpp",
17 "main.cpp",
18 ],
19
20 cflags: [
21 "-Werror",
22 "-Wall",
23 ],
24
25 shared_libs: [
26 "libbase",
27 "libcutils",
28 ],
29}
30
31// bugreportz_test
32// ===============
33cc_test {
34 name: "bugreportz_test",
35 test_suites: ["device-tests"],
36
37 cflags: [
38 "-Werror",
39 "-Wall",
40 ],
41
42 srcs: [
43 "bugreportz.cpp",
44 "bugreportz_test.cpp",
45 ],
46
47 static_libs: ["libgmock"],
48
49 shared_libs: [
50 "libbase",
51 "libutils",
52 ],
53}