blob: 5b275fb9f6e5c94f7a958ba95b7b0d08991cb086 [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",
Siarhei Vishniakou05a8fe22018-10-03 16:38:28 -070012 "-Wextra",
Chih-Hung Hsieha50a4672017-10-05 13:55:31 -070013 "-Wno-unused-parameter",
14 ],
Logan Chien3e60b392018-02-27 16:00:11 +080015 shared_libs: [
Josh Gao12ad9942018-07-20 17:46:59 -070016 "libbase",
Robert Carr803535b2018-08-02 16:38:15 -070017 "libbinder",
Colin Cross45a1b9c2017-04-19 16:56:46 -070018 "libcutils",
19 "liblog",
20 "libutils",
21 "libhardware",
22 "libhardware_legacy",
23 "libui",
Colin Cross45a1b9c2017-04-19 16:56:46 -070024 "libinput",
25 "libinputflinger",
Prabir Pradhan29c95332018-11-14 20:14:11 -080026 "libinputreader",
27 "libinputflinger_base",
Colin Cross45a1b9c2017-04-19 16:56:46 -070028 "libinputservice",
29 ],
30}