Colin Cross | 6e1c761 | 2017-04-19 16:56:46 -0700 | [diff] [blame] | 1 | // Build the unit tests. |
2 | |||||
3 | cc_test { | ||||
4 | name: "inputflinger_tests", | ||||
5 | srcs: [ | ||||
6 | "InputReader_test.cpp", | ||||
7 | "InputDispatcher_test.cpp", | ||||
8 | ], | ||||
9 | test_per_src: true, | ||||
Chih-Hung Hsieh | a50a467 | 2017-10-05 13:55:31 -0700 | [diff] [blame^] | 10 | cflags: [ |
11 | "-Wall", | ||||
12 | "-Werror", | ||||
13 | "-Wno-unused-parameter", | ||||
14 | ], | ||||
Colin Cross | 6e1c761 | 2017-04-19 16:56:46 -0700 | [diff] [blame] | 15 | shared_libs = [ |
16 | "libcutils", | ||||
17 | "liblog", | ||||
18 | "libutils", | ||||
19 | "libhardware", | ||||
20 | "libhardware_legacy", | ||||
21 | "libui", | ||||
22 | "libskia", | ||||
23 | "libinput", | ||||
24 | "libinputflinger", | ||||
25 | "libinputservice", | ||||
26 | ], | ||||
27 | } |