allwinner_a64/android/external/e2fsprogs/lib/uuid/Android.bp
2018-08-08 16:14:42 +08:00

34 lines
750 B
Text

// Copyright 2017 The Android Open Source Project
cc_library {
name: "libext2_uuid",
host_supported: true,
unique_host_soname: true,
srcs: [
"clear.c",
"compare.c",
"copy.c",
"gen_uuid.c",
"isnull.c",
"pack.c",
"parse.c",
"unpack.c",
"unparse.c",
"uuid_time.c",
],
cflags: [
"-W",
"-Wall",
"-Wno-unused-function",
"-Wno-unused-parameter",
],
target: {
windows: {
include_dirs: [ "external/e2fsprogs/include/mingw" ],
enabled: true
},
},
header_libs: ["libext2-headers"],
export_include_dirs: ["."],
export_header_lib_headers: ["libext2-headers"],
}