Colin Cross | 45a1b9c | 2017-04-19 16:56:46 -0700 | [diff] [blame] | 1 | // Build the unit tests. |
| 2 | |
| 3 | cc_test { |
| 4 | name: "inputflinger_tests", |
Siarhei Vishniakou | a62a8dd | 2018-06-08 21:17:33 +0100 | [diff] [blame] | 5 | cpp_std: "c++17", |
Colin Cross | 45a1b9c | 2017-04-19 16:56:46 -0700 | [diff] [blame] | 6 | srcs: [ |
| 7 | "InputReader_test.cpp", |
| 8 | "InputDispatcher_test.cpp", |
| 9 | ], |
Chih-Hung Hsieh | a50a467 | 2017-10-05 13:55:31 -0700 | [diff] [blame] | 10 | cflags: [ |
| 11 | "-Wall", |
| 12 | "-Werror", |
| 13 | "-Wno-unused-parameter", |
| 14 | ], |
Logan Chien | 3e60b39 | 2018-02-27 16:00:11 +0800 | [diff] [blame] | 15 | shared_libs: [ |
Josh Gao | 12ad994 | 2018-07-20 17:46:59 -0700 | [diff] [blame] | 16 | "libbase", |
Colin Cross | 45a1b9c | 2017-04-19 16:56:46 -0700 | [diff] [blame] | 17 | "libcutils", |
| 18 | "liblog", |
| 19 | "libutils", |
| 20 | "libhardware", |
| 21 | "libhardware_legacy", |
| 22 | "libui", |
Colin Cross | 45a1b9c | 2017-04-19 16:56:46 -0700 | [diff] [blame] | 23 | "libinput", |
| 24 | "libinputflinger", |
| 25 | "libinputservice", |
| 26 | ], |
| 27 | } |