OSDN Git Service

simpleperf: support [vdso].
[android-x86/system-extras.git] / squashfs_utils / Android.bp
1 // Copyright 2015 The Android Open Source Project
2
3 cc_library_static {
4     name: "libsquashfs_utils",
5     host_supported: true,
6     srcs: [
7         "squashfs_utils.c",
8     ],
9     include_dirs: ["external/squashfs-tools/squashfs-tools"],
10     export_include_dirs: ["."],
11
12     static_libs: [
13         "libcutils",
14     ],
15
16     target: {
17         host: {
18             cflags: ["-Wall", "-Werror", "-D_GNU_SOURCE", "-DSQUASHFS_NO_KLOG"]
19         },
20     },
21
22 }