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