xref: /aosp_15_r20/external/rmi4utils/f54test/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_binary {
11*a248dafdSChristopher Ferris    name: "f54test",
12*a248dafdSChristopher Ferris    srcs: [
13*a248dafdSChristopher Ferris        "main.cpp",
14*a248dafdSChristopher Ferris        "f54test.cpp",
15*a248dafdSChristopher Ferris        "testutil.cpp",
16*a248dafdSChristopher Ferris        "display.cpp",
17*a248dafdSChristopher Ferris    ],
18*a248dafdSChristopher Ferris    cflags: [
19*a248dafdSChristopher Ferris        "-Wall",
20*a248dafdSChristopher Ferris        "-Werror",
21*a248dafdSChristopher Ferris        "-Wno-sometimes-uninitialized",
22*a248dafdSChristopher Ferris        "-Wno-unused-private-field",
23*a248dafdSChristopher Ferris        "-Wno-unused-parameter",
24*a248dafdSChristopher Ferris    ],
25*a248dafdSChristopher Ferris    static_libs: ["rmidevice"],
26*a248dafdSChristopher Ferris}
27