aboutsummaryrefslogtreecommitdiff
path: root/libfdt/Android.bp
blob: e92497b40fa1b1d8856e0a6967212a7415788b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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",
    ],
    export_include_dirs: ["."],
}