Home | History | Annotate | Download | only in tests
      1 // Build the unit tests.
      2 
      3 cc_test {
      4     name: "inputflinger_tests",
      5     srcs: [
      6         "BlockingQueue_test.cpp",
      7         "TestInputListener.cpp",
      8         "InputClassifier_test.cpp",
      9         "InputClassifierConverter_test.cpp",
     10         "InputDispatcher_test.cpp",
     11         "InputReader_test.cpp",
     12     ],
     13     cflags: [
     14         "-Wall",
     15         "-Werror",
     16         "-Wextra",
     17         "-Wno-unused-parameter",
     18     ],
     19     shared_libs: [
     20         "android.hardware.input.classifier (a] 1.0",
     21         "libbase",
     22         "libbinder",
     23         "libcutils",
     24         "liblog",
     25         "libutils",
     26         "libhardware",
     27         "libhardware_legacy",
     28         "libui",
     29         "libinput",
     30         "libinputflinger",
     31         "libinputreader",
     32         "libinputflinger_base",
     33         "libinputservice",
     34     ],
     35 }
     36