blob: b5b080d2630d2aff7c4126abb98652bcb71e9945 [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}