summaryrefslogtreecommitdiff
path: root/services/powermanager/Android.bp
blob: b0d3e3bde079cd44e49321579e38a855d2daae54 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
cc_library_shared {
    name: "libpowermanager",

    srcs: [
        "IPowerManager.cpp",
        "Temperature.cpp",
        "CoolingDevice.cpp",
        ":libpowermanager_aidl",
    ],

    aidl: {
       local_include_dirs: ["include"],
       include_dirs: [
           "frameworks/base/core/java/android/os",
       ],
       export_aidl_headers: true
    },

    shared_libs: [
        "libutils",
        "libbinder",
        "liblog"
    ],

    cflags: [
        "-Wall",
        "-Werror",
        "-Wunused",
        "-Wunreachable-code",
    ],

    local_include_dirs: ["include"],
    export_include_dirs: [
         "include",
    ],
}

cc_test {
    name: "thermalmanager-test",
    srcs: ["IThermalManagerTest.cpp",
          ],
    cflags: [
        "-Wall",
        "-Werror",
        "-Wextra",
    ],
    shared_libs: [
        "libbase",
        "libhidlbase",
        "liblog",
        "libpowermanager",
        "libbinder",
        "libutils",
    ],
}