-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.bp
64 lines (60 loc) · 1.52 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
56
57
58
59
60
61
62
63
cc_prebuilt_library_shared {
name: "libdpframework",
vendor: true,
target: {
android_arm: {
srcs: ["proprietary/vendor/lib/libdpframework.so"],
},
android_arm64: {
srcs: ["proprietary/vendor/lib64/libdpframework.so"],
},
},
strip: {
none:true,
},
}
cc_prebuilt_library_shared {
name: "libnvram",
vendor: true,
target: {
android_arm: {
srcs: ["proprietary/vendor/lib/libnvram.so"],
},
android_arm64: {
srcs: ["proprietary/vendor/lib64/libnvram.so"],
},
},
strip: {
none:true,
},
}
cc_prebuilt_library_shared {
name: "libaudiocustparam",
vendor: true,
target: {
android_arm: {
srcs: ["proprietary/vendor/lib/libaudiocustparam.so"],
},
android_arm64: {
srcs: ["proprietary/vendor/lib64/libaudiocustparam.so"],
},
},
strip: {
none:true,
},
}
cc_prebuilt_library_shared {
name: "libion_mtk",
vendor: true,
target: {
android_arm: {
srcs: ["proprietary/vendor/lib/libion_mtk.so"],
},
android_arm64: {
srcs: ["proprietary/vendor/lib64/libion_mtk.so"],
},
},
strip: {
none:true,
},
}