blob: 39fcb8063141f2467c7a029fc1724513e38a1916 [file] [log] [blame]
Felipe Leme343175a2016-08-02 18:57:37 -07001// Build the unit tests for dumpsys
2cc_test {
3 name: "dumpsys_test",
Dan Shif6b5a522017-03-29 23:06:00 -07004 test_suites: ["device-tests"],
Felipe Leme343175a2016-08-02 18:57:37 -07005
6 srcs: ["dumpsys_test.cpp"],
Chih-Hung Hsieh734e3782017-10-05 13:44:13 -07007 cflags: ["-Wall", "-Werror"],
Felipe Leme343175a2016-08-02 18:57:37 -07008
9 shared_libs: [
10 "libbase",
11 "libbinder",
Felipe Leme343175a2016-08-02 18:57:37 -070012 "libutils",
13 ],
14
15 static_libs: [
16 "libdumpsys",
17 "libgmock",
18 ],
19
20 clang: true,
21}