ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
cc_library_static {
    name: "libfdt",
    host_supported: true,
 
    cflags: [
        "-Werror",
        "-Wno-macro-redefined",
        "-Wno-sign-compare",
    ],
    srcs: [
        "fdt.c",
        "fdt_ro.c",
        "fdt_wip.c",
        "fdt_sw.c",
        "fdt_rw.c",
        "fdt_strerror.c",
        "fdt_empty_tree.c",
        "fdt_addresses.c",
        "fdt_overlay.c",
        "acpi.c",
    ],
    export_include_dirs: ["."],
}