huangcm
2024-09-30 df6679f4a364cf78b2a2ebeceecb7f62994725e2
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
/*
cc_library_static {
    name: "librecovery_updater_common",
    cflags: [
        "-Wall",
        "-Wextra",
        "-Werror",
        "-pedantic",
    ],
 
    srcs: [
        "recovery_updater.cpp",
        "BurnNandBoot.cpp",
        "BurnSdBoot.cpp",
        "Utils.cpp",
    ],
 
    static_libs: [
        "libbase",
        "libziparchive",
    ],
 
}
*/
 
//###########################################################
// recovery ui
 
cc_library_static {
    name: "librecovery_ui_common",
    cflags: [
        "-Wall",
        "-Wextra",
        "-Werror",
        "-pedantic",
    ],
 
    srcs: [
        "aw_device.cpp"
    ],
 
    shared_libs: [
        "librecovery_ui",
    ],
 
}