1// Copyright 2017 The Android Open Source Project
2
3cc_library {
4    name: "libext2_uuid",
5    host_supported: true,
6    unique_host_soname: true,
7    srcs: [
8        "clear.c",
9        "compare.c",
10        "copy.c",
11        "gen_uuid.c",
12        "isnull.c",
13        "pack.c",
14        "parse.c",
15        "unpack.c",
16        "unparse.c",
17        "uuid_time.c",
18    ],
19    cflags: [
20        "-W",
21        "-Wall",
22        "-Wno-unused-function",
23        "-Wno-unused-parameter",
24    ],
25
26    header_libs: ["libext2-headers"],
27    export_include_dirs: ["."],
28    export_header_lib_headers: ["libext2-headers"],
29}
30