blob: ccd14c93ae00afc021590de5cd9437231513ecab [file] [log] [blame]
Colin Cross45a1b9c2017-04-19 16:56:46 -07001// Build the unit tests.
2
3cc_test {
4 name: "inputflinger_tests",
Siarhei Vishniakoua62a8dd2018-06-08 21:17:33 +01005 cpp_std: "c++17",
Colin Cross45a1b9c2017-04-19 16:56:46 -07006 srcs: [
7 "InputReader_test.cpp",
8 "InputDispatcher_test.cpp",
9 ],
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 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}