-
Notifications
You must be signed in to change notification settings - Fork 5
/
Android.bp
130 lines (117 loc) · 2.66 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//
// Copyright (C) 2022 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
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: "libbase_shim",
shared_libs: ["libbase"],
srcs: ["libbase/logging.cpp"],
vendor: true
}
cc_library {
name: "libcamera_metadata_shim",
shared_libs: ["libcamera_metadata"],
srcs: ["libcamera_metadata/camera_metadata.cpp"],
vendor: true
}
cc_library_shared {
name: "libcamera_provider_shim",
shared_libs: [
"libcamera_metadata",
],
include_dirs: [
"hardware/interfaces/camera/common/default/include/",
"hardware/libhardware/include",
],
srcs: ["libcamera_provider/camera_provider.cpp"],
vendor: true,
}
cc_library {
name: "libcutils_shim",
shared_libs: [
"libcutils",
],
srcs: [
"libcutils/strdup16to8.cpp",
"libcutils/strdup8to16.cpp",
],
vendor_available: 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"],
shared_libs: ["libhidlbase"],
compile_multilib: "both",
vendor: true,
}
cc_library {
name: "libmemset_shim",
target: {
android_arm: {
srcs: ["libmemset/memset32.S"],
sanitize: {
misc_undefined: ["integer"],
},
},
android_arm64: {
srcs: ["libmemset/android_memset.S"],
sanitize: {
misc_undefined: ["integer"],
},
},
},
vendor: true,
}
cc_library_shared {
name: "libpiex_shim",
shared_libs: ["libpiex"],
srcs: ["libpiex/piex_shim.cpp"],
vendor: true,
}
cc_library_shared {
name: "libui_shim",
shared_libs: ["libui"],
srcs: [
"libui/Fence.cpp",
"libui/GraphicBuffer.cpp",
],
vendor_available: true,
}
cc_library {
name: "libip_checksum_shim",
whole_static_libs: [
"libip_checksum",
],
vendor_available: true,
}