blob: 2faa7944c13b7b9040f7cdb70462aabe5eaedbd6 [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: [
Colin Cross45a1b9c2017-04-19 16:56:46 -070015 "libcutils",
16 "liblog",
17 "libutils",
18 "libhardware",
19 "libhardware_legacy",
20 "libui",
Colin Cross45a1b9c2017-04-19 16:56:46 -070021 "libinput",
22 "libinputflinger",
23 "libinputservice",
24 ],
25}