blob: 19a46f6a65e5837c6e1e09c46ae55c41d270464f [file] [log] [blame]
Colin Cross6e1c7612017-04-19 16:56:46 -07001// Build the unit tests.
2
3cc_test {
4 name: "inputflinger_tests",
5 srcs: [
6 "InputReader_test.cpp",
7 "InputDispatcher_test.cpp",
8 ],
9 test_per_src: true,
Chih-Hung Hsieha50a4672017-10-05 13:55:31 -070010 cflags: [
11 "-Wall",
12 "-Werror",
13 "-Wno-unused-parameter",
14 ],
Logan Chien3e60b392018-02-27 16:00:11 +080015 shared_libs: [
Colin Cross6e1c7612017-04-19 16:56:46 -070016 "libcutils",
17 "liblog",
18 "libutils",
19 "libhardware",
20 "libhardware_legacy",
21 "libui",
22 "libskia",
23 "libinput",
24 "libinputflinger",
25 "libinputservice",
26 ],
27}