forked from open-vela/frameworks_system_vibrator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
37 lines (34 loc) · 660 Bytes
/
Copy pathAndroid.bp
File metadata and controls
37 lines (34 loc) · 660 Bytes
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
cc_defaults {
name: "vibrator_defaults",
shared_libs: [
"libcutils"
],
static_libs: [
"libvibrator_api"
],
proprietary: true,
}
cc_library_headers {
name: "libvibrator_api_headers",
export_include_dirs: ["."],
proprietary: true
}
cc_library_static {
name: "libvibrator_api",
srcs: [
"vibrator_api.c",
],
cflags: [
"-DCONFIG_VIBRATOR_SERVER_CPUNAME=\"ap\""
],
header_libs: [
"nuttx_libc_headers"
],
proprietary: true
}
cc_binary {
name: "vibrator_test",
srcs: ["vibrator_test.c"],
defaults: ["vibrator_defaults"],
proprietary: true
}