summaryrefslogtreecommitdiff
path: root/libqservice/Android.bp
blob: 6f11a1aae9bb6680c263f4534d63ea66fa6d6158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "hardware_qcom_sdm845_display_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    //   SPDX-license-identifier-BSD
    //   legacy_not_a_contribution
    default_applicable_licenses: ["hardware_qcom_sdm845_display_license"],
}

cc_library_shared {
    name: "libqservice",
    vendor: true,
    defaults: ["display_defaults"],
    shared_libs: ["libbinder"],
    cflags: [
        "-DLOG_TAG=\"qdqservice\"",
        "-Wno-sign-conversion",
    ],
    srcs: [
        "QService.cpp",
        "IQService.cpp",
        "IQClient.cpp",
        "IQHDMIClient.cpp",
    ],
}