1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "frameworks_native_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_native_license"],
8}
9
10cc_benchmark {
11    name: "inputflinger_benchmarks",
12    srcs: [
13        "InputDispatcher_benchmarks.cpp",
14    ],
15    defaults: [
16        "inputflinger_defaults",
17        "libinputdispatcher_defaults",
18    ],
19    shared_libs: [
20        "libbase",
21        "libbinder",
22        "libcrypto",
23        "libcutils",
24        "libinput",
25        "libinputflinger_base",
26        "libinputreporter",
27        "liblog",
28        "libstatslog",
29        "libui",
30        "libutils",
31        "lib-platform-compat-native-api",
32    ],
33    static_libs: [
34        "libattestation",
35        "libinputdispatcher",
36    ],
37}
38