Dan Willemsen | 4c93974 | 2016-12-06 15:44:57 -0800 | [diff] [blame] | 1 | // Build the unit tests for installd |
| 2 | cc_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 Sharkey | 871a8f2 | 2017-02-21 18:30:28 -0700 | [diff] [blame] | 17 | |
| 18 | cc_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 Sharkey | e12d596 | 2017-04-03 16:41:02 -0600 | [diff] [blame^] | 36 | |
| 37 | cc_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 | } |