blob: afaf139d37516b641a3a6168641f13c91fa7fda1 [file] [log] [blame]
Colin Cross45a1b9c2017-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 ],
Chih-Hung Hsieha50a4672017-10-05 13:55:31 -07009 cflags: [
10 "-Wall",
11 "-Werror",
12 "-Wno-unused-parameter",
13 ],
Logan Chien3e60b392018-02-27 16:00:11 +080014 shared_libs: [
Josh Gao12ad9942018-07-20 17:46:59 -070015 "libbase",
Colin Cross45a1b9c2017-04-19 16:56:46 -070016 "libcutils",
17 "liblog",
18 "libutils",
19 "libhardware",
20 "libhardware_legacy",
21 "libui",
Colin Cross45a1b9c2017-04-19 16:56:46 -070022 "libinput",
23 "libinputflinger",
24 "libinputservice",
25 ],
26}