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 "hardware_qcom_display_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    //   SPDX-license-identifier-BSD
8    //   legacy_not_a_contribution
9    default_applicable_licenses: ["hardware_qcom_display_license"],
10}
11
12cc_library_shared {
13    name: "libqservice",
14    vendor: true,
15    defaults: ["display_defaults"],
16    shared_libs: ["libbinder"],
17    cflags: [
18        "-DLOG_TAG=\"qdqservice\"",
19        "-Wno-sign-conversion",
20    ],
21    srcs: [
22        "QService.cpp",
23        "IQService.cpp",
24        "IQClient.cpp",
25        "IQHDMIClient.cpp",
26    ],
27}
28