platform_system_core/libsparse/Android.bp
Alex Deymo b0c395955d Remove "_host" and "_static" suffix from libsparse definition.
This now combines all the "libsparse" libraries into the same soong
target. A minor side-effect of this change is that the libsparse
static library depends on the libz shared library instead of the libz
static library. This minor change has no effect since targets using
the static libsparse library need to explicitly include either the
static libz or the shared one.

Bug: 34220783
Change-Id: I8f41586cf4c3336791cfa57ab4f5ae59a76d7ffa
2017-01-11 19:15:11 -08:00

67 lines
1.2 KiB
Text

// Copyright 2010 The Android Open Source Project
cc_library {
name: "libsparse",
host_supported: true,
unique_host_soname: true,
srcs: [
"backed_block.c",
"output_file.c",
"sparse.c",
"sparse_crc32.c",
"sparse_err.c",
"sparse_read.c",
],
cflags: ["-Werror"],
local_include_dirs: ["include"],
export_include_dirs: ["include"],
target: {
host: {
shared_libs: ["libz-host"],
},
android: {
shared_libs: ["libz"],
},
windows: {
enabled: true,
},
},
}
cc_binary {
name: "simg2img",
host_supported: true,
srcs: [
"simg2img.c",
"sparse_crc32.c",
],
static_libs: [
"libsparse",
"libz",
],
cflags: ["-Werror"],
}
cc_binary {
name: "img2simg",
host_supported: true,
srcs: ["img2simg.c"],
static_libs: [
"libsparse",
"libz",
],
cflags: ["-Werror"],
}
cc_binary_host {
name: "append2simg",
srcs: ["append2simg.c"],
static_libs: [
"libsparse",
"libz",
],
cflags: ["-Werror"],
}