1// Copyright 2017 The Android Open Source Project
2
3cc_library {
4    name: "libext2_com_err",
5    host_supported: true,
6    unique_host_soname: true,
7    srcs: [
8        "error_message.c",
9        "et_name.c",
10        "init_et.c",
11        "com_err.c",
12        "com_right.c",
13    ],
14
15    cflags: [
16        "-W",
17        "-Wall",
18    ],
19    target: {
20        windows: {
21            enabled: true,
22        },
23    },
24
25    header_libs: ["libext2-headers"],
26    export_include_dirs: ["."],
27    export_header_lib_headers: ["libext2-headers"],
28}
29