blob: 630c1f36529482b7b1e4cf6f38d2313c8d0fc38c [file] [log] [blame]
Dan Willemsen4c939742016-12-06 15:44:57 -08001// Build the unit tests for installd
2cc_test {
3 name: "installd_utils_test",
4 clang: true,
5 srcs: ["installd_utils_test.cpp"],
6 shared_libs: [
7 "libbase",
8 "liblog",
9 "libutils",
10 "libcutils",
11 ],
12 static_libs: [
13 "libinstalld",
14 "libdiskusage",
15 ],
16}
Jeff Sharkey871a8f22017-02-21 18:30:28 -070017
18cc_test {
19 name: "installd_cache_test",
20 clang: true,
21 srcs: ["installd_cache_test.cpp"],
22 shared_libs: [
23 "libbase",
24 "libbinder",
25 "libcutils",
26 "liblog",
27 "liblogwrap",
28 "libselinux",
29 "libutils",
30 ],
31 static_libs: [
32 "libinstalld",
33 "libdiskusage",
34 ],
35}
Jeff Sharkeye12d5962017-04-03 16:41:02 -060036
37cc_test {
38 name: "installd_service_test",
39 clang: true,
40 srcs: ["installd_service_test.cpp"],
41 shared_libs: [
42 "libbase",
43 "libbinder",
44 "libcutils",
45 "liblog",
46 "liblogwrap",
47 "libselinux",
48 "libutils",
49 ],
50 static_libs: [
51 "libinstalld",
52 "libdiskusage",
53 ],
54}