summaryrefslogtreecommitdiff
path: root/services/schedulerservice/Android.bp
blob: 4ef72d0c838d059ca2d85b9dae93f6c04e82beb4 (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
28
29
30
31
32
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "frameworks_native_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["frameworks_native_license"],
}

cc_library_shared {
    name: "libschedulerservicehidl",
    srcs: [
        "SchedulingPolicyService.cpp",
    ],
    cflags: ["-Wall", "-Werror"],
    shared_libs: [
        "libhidlbase",
        "libmediautils",
        "liblog",
        "libutils",
        "android.frameworks.schedulerservice@1.0",
    ],
    header_libs: [
        "libcutils_headers",
    ],
    export_include_dirs: [
        "include/"
    ],
    local_include_dirs: [
        "include/schedulerservice/",
    ],
}