Home | History | Annotate | Download | only in squashfs_utils
      1 // Copyright 2015 The Android Open Source Project
      2 
      3 cc_library_static {
      4     name: "libsquashfs_utils",
      5     defaults: ["system-extras-cflags-defaults"],
      6     host_supported: true,
      7     srcs: [
      8         "squashfs_utils.c",
      9     ],
     10     include_dirs: ["external/squashfs-tools/squashfs-tools"],
     11     export_include_dirs: ["."],
     12 
     13     static_libs: [
     14         "libcutils",
     15     ],
     16 
     17     target: {
     18         host: {
     19             cflags: ["-Wall", "-Werror", "-D_GNU_SOURCE", "-DSQUASHFS_NO_KLOG"]
     20         },
     21     },
     22 
     23 }
     24