blob: 813f42fb53097c4910775d7f64a17dbf3e7e2d1c [file] [log] [blame]
Alex Deymoe8ed6942017-01-11 16:54:52 -08001// Copyright 2015 The Android Open Source Project
2
3cc_library_static {
4 name: "libsquashfs_utils",
Chih-Hung Hsieh16db6722017-10-02 15:06:37 -07005 defaults: ["system-extras-cflags-defaults"],
Alex Deymoe8ed6942017-01-11 16:54:52 -08006 host_supported: true,
Jiyong Park02fd5582018-05-24 14:10:32 +09007 recovery_available: true,
Alex Deymoe8ed6942017-01-11 16:54:52 -08008 srcs: [
9 "squashfs_utils.c",
10 ],
11 include_dirs: ["external/squashfs-tools/squashfs-tools"],
12 export_include_dirs: ["."],
13
14 static_libs: [
15 "libcutils",
16 ],
17
18 target: {
19 host: {
20 cflags: ["-Wall", "-Werror", "-D_GNU_SOURCE", "-DSQUASHFS_NO_KLOG"]
21 },
22 },
23
24}