• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2017 The Android Open Source Project
2
3cc_library {
4    name: "libext2_com_err",
5    host_supported: true,
6    ramdisk_available: true,
7    recovery_available: true,
8    unique_host_soname: true,
9    defaults: ["e2fsprogs-defaults"],
10    srcs: [
11        "error_message.c",
12        "et_name.c",
13        "init_et.c",
14        "com_err.c",
15        "com_right.c",
16    ],
17
18    target: {
19        windows: {
20            enabled: true,
21            cflags: [
22                "-Wno-unused-variable",
23            ],
24        },
25    },
26
27    header_libs: ["libext2-headers"],
28    export_include_dirs: ["."],
29    export_header_lib_headers: ["libext2-headers"],
30}
31