blob: 8a35509822e104a0896afed6e41fa39c780b4713 [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 ],
9 test_per_src: true,
Chih-Hung Hsieha50a4672017-10-05 13:55:31 -070010 cflags: [
11 "-Wall",
12 "-Werror",
13 "-Wno-unused-parameter",
14 ],
Colin Cross45a1b9c2017-04-19 16:56:46 -070015 shared_libs = [
16 "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}