Home | History | Annotate | Download | only in tests
      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 }
     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 }
     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 }
     55