blob: 924a3a351b1ab759322f00a92891e9ef98fa4f77 [file] [log] [blame]
Dan Willemsend9608942018-11-16 16:08:45 -08001// bugreportz
2// ==========
3cc_binary {
4 name: "bugreportz",
5
6 srcs: [
7 "bugreportz.cpp",
8 "main.cpp",
9 ],
10
11 cflags: [
12 "-Werror",
13 "-Wall",
14 ],
15
16 shared_libs: [
17 "libbase",
18 "libcutils",
19 ],
20}
21
22// bugreportz_test
23// ===============
24cc_test {
25 name: "bugreportz_test",
26 test_suites: ["device-tests"],
27
28 cflags: [
29 "-Werror",
30 "-Wall",
31 ],
32
33 srcs: [
34 "bugreportz.cpp",
35 "bugreportz_test.cpp",
36 ],
37
38 static_libs: ["libgmock"],
39
40 shared_libs: [
41 "libbase",
42 "libutils",
43 ],
44}