-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.bp
61 lines (57 loc) · 1.17 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
soong_namespace {
imports:[
],
}
cc_prebuilt_library_shared {
name: "[email protected]",
owner: "legion",
strip:{
none: true,
},
target :{
android_arm64: {
srcs: ["proprietary/vendor/lib64/[email protected]"],
},
},
compile_multilib: "64",
check_elf_files: false,
prefer: true,
soc_specific: true,
}
cc_prebuilt_library_shared {
name: "libagm",
owner: "legion",
strip: {
none: true,
},
target: {
android_arm64: {
srcs: ["proprietary/vendor/lib64/libagm.so"],
},
},
compile_multilib: "64",
check_elf_files: false,
prefer: true,
soc_specific: true,
}
cc_prebuilt_library_shared {
name: "libar-pal",
owner: "legion",
strip: {
none: true,
},
target: {
android_arm64: {
srcs: ["proprietary/vendor/lib64/libar-pal.so"],
},
},
compile_multilib: "64",
check_elf_files: false,
prefer: true,
soc_specific: true,
}
dex_import {
name: "WfdCommon",
owner: "legion",
jars: ["proprietary/system/framework/WfdCommon.jar"],
}