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
| cc_library_shared {
| name: "bootctrl.aw",
| relative_install_path: "hw",
| vendor: true,
| stem: "bootctrl.default",
| srcs: [
| "bootctrl.cpp",
| "bootinfo.cpp",
| ],
| header_libs: ["libhardware_headers"],
|
| static_libs: [
| "libbootloader_message_vendor",
| ],
| shared_libs: [
| "libbase",
| "libcutils",
| "liblog",
| ],
| owner: "allwinner",
| cflags: [
| "-Wall",
| "-Werror",
| "-Wno-unused-parameter",
| ],
|
| }
|
|