-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
55 lines (46 loc) · 1.03 KB
/
Android.bp
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_static {
name: "libhealthd.msm",
srcs: [
"healthd_board_msm.cpp",
"healthd_msm_alarm.cpp",
],
cflags: ["-Werror"],
include_dirs: [
"bootable/recovery",
"bootable/recovery/minui/include",
],
header_libs: [
"libbatteryservice_headers",
"libbase_headers",
"libhealthd_headers",
],
}
cc_library_shared {
name: "[email protected]",
stem: "[email protected]",
vendor: true,
recovery_available: true,
relative_install_path: "hw",
srcs: [
"healthimpl.cpp",
],
cflags: [
"-Wall",
"-Werror",
],
static_libs: [
"libbatterymonitor",
"libhealthloop",
"libhealth2impl",
],
shared_libs: [
"libbase",
"libcutils",
"libhidlbase",
"liblog",
"libutils",
],
}