• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    target: {
26        windows: {
27            include_dirs: [ "external/e2fsprogs/include/mingw" ],
28            enabled: true
29        },
30    },
31    header_libs: ["libext2-headers"],
32    export_include_dirs: ["."],
33    export_header_lib_headers: ["libext2-headers"],
34}
35