Home | History | Annotate | Download | only in tests
      1 // Build the unit tests for dumpsys
      2 cc_test {
      3     name: "dumpsys_test",
      4     test_suites: ["device-tests"],
      5 
      6     srcs: ["dumpsys_test.cpp"],
      7     cflags: ["-Wall", "-Werror"],
      8 
      9     shared_libs: [
     10         "libbase",
     11         "libbinder",
     12         "libutils",
     13     ],
     14 
     15     static_libs: [
     16         "libdumpsys",
     17         "libgmock",
     18         "libserviceutils",
     19     ],
     20 
     21     clang: true,
     22 }
     23