xref: /aosp_15_r20/external/rmi4utils/rmidevice/Android.bp (revision a248dafd7653b99fc45f9d29e5f139b04f2f28bc)
1*a248dafdSChristopher Ferrispackage {
2*a248dafdSChristopher Ferris    // See: http://go/android-license-faq
3*a248dafdSChristopher Ferris    // A large-scale-change added 'default_applicable_licenses' to import
4*a248dafdSChristopher Ferris    // all of the 'license_kinds' from "external_rmi4utils_license"
5*a248dafdSChristopher Ferris    // to get the below license kinds:
6*a248dafdSChristopher Ferris    //   SPDX-license-identifier-Apache-2.0
7*a248dafdSChristopher Ferris    default_applicable_licenses: ["external_rmi4utils_license"],
8*a248dafdSChristopher Ferris}
9*a248dafdSChristopher Ferris
10*a248dafdSChristopher Ferriscc_library_static {
11*a248dafdSChristopher Ferris    name: "rmidevice",
12*a248dafdSChristopher Ferris    srcs: [
13*a248dafdSChristopher Ferris        "hiddevice.cpp",
14*a248dafdSChristopher Ferris        "rmidevice.cpp",
15*a248dafdSChristopher Ferris        "rmifunction.cpp",
16*a248dafdSChristopher Ferris        "util.cpp",
17*a248dafdSChristopher Ferris    ],
18*a248dafdSChristopher Ferris    cflags: [
19*a248dafdSChristopher Ferris        "-Wall",
20*a248dafdSChristopher Ferris        "-Werror",
21*a248dafdSChristopher Ferris        "-Wno-unused-parameter",
22*a248dafdSChristopher Ferris        "-Wno-unused-variable",
23*a248dafdSChristopher Ferris    ],
24*a248dafdSChristopher Ferris    export_include_dirs: ["."],
25*a248dafdSChristopher Ferris}
26