-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroid.bp
108 lines (97 loc) · 2.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
//
// Copyright (C) 2022 The LineageOS Project
// Copyright (C) 2023 StatiXOS
// SPDX-License-Identifier: Apache-2.0
//
cc_library {
name: "libbinder_shim",
shared_libs: ["libbinder", "libutils"],
header_libs: ["libbinder_headers"],
srcs: [
"libbinder/IServiceManager.cpp",
"libbinder/OS_android.cpp",
"libbinder/PermissionCache.cpp",
],
version_script: "libbinder/libbinder.map",
vendor_available: true
}
cc_library {
name: "libcamera_metadata_shim",
shared_libs: ["libcamera_metadata"],
srcs: ["libcamera_metadata/camera_metadata.cpp"],
vendor: true
}
cc_library_shared {
name: "libpiex_shim",
shared_libs: ["libpiex"],
srcs: ["libpiex/piex_shim.cpp"],
vendor: true,
}
cc_library_shared {
name: "libavservices_minijail_vendor",
shared_libs: ["libavservices_minijail"],
vendor: true,
}
cc_defaults {
name: "libgui_shim_defaults",
shared_libs: ["libutils"],
srcs: [
"libgui/GraphicBufferProducer.cpp",
"libgui/SurfaceComposerClient.cpp",
],
}
cc_library {
name: "libcrypto_shim",
srcs: [
"libcrypto/cbs.c",
],
vendor: true
}
cc_library_shared {
name: "libcodec2_shim",
shared_libs: [
"libcodec2_vndk",
],
srcs: [
"libcodec2/C2Fence.cpp",
],
vendor: true,
}
cc_library {
name: "libgui_shim",
defaults: ["libgui_shim_defaults"],
shared_libs: ["libgui"],
system_ext_specific: true,
}
cc_library {
name: "libgui_shim_vendor",
defaults: ["libgui_shim_defaults"],
shared_libs: ["libgui_vendor"],
vendor: true,
}
cc_library {
name: "libhidlbase_shim",
srcs: [
"libhidlbase/gBnsConstructorMap.cpp",
"libhidlbase/Parcel.cpp",
],
shared_libs: ["libhidlbase"],
compile_multilib: "both",
vendor: true,
}
cc_library {
name: "libinput_shim",
srcs: [
"libinput/android_view_KeyEvent.cpp",
"libinput/Input.cpp",
],
include_dirs: [
"frameworks/native/include",
"frameworks/native/libs/ui/include",
],
shared_libs: [
"libandroid_runtime",
"libinput",
],
compile_multilib: "64",
}