32 lines
566 B
Plaintext
32 lines
566 B
Plaintext
// Copyright (C) 2016 The Android Open Source Project
|
|
|
|
cc_binary_host {
|
|
name: "lz4",
|
|
srcs: [
|
|
"datagen.c",
|
|
"bench.c",
|
|
"lz4io.c",
|
|
"lz4cli.c",
|
|
],
|
|
cflags: ["-Wall", "-Werror"],
|
|
static_libs: ["liblz4"],
|
|
stl: "libc++_static",
|
|
}
|
|
|
|
cc_binary_host {
|
|
name: "lz4c",
|
|
cflags: [
|
|
"-DENABLE_LZ4C_LEGACY_OPTIONS",
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
srcs: [
|
|
"datagen.c",
|
|
"bench.c",
|
|
"lz4io.c",
|
|
"lz4cli.c",
|
|
],
|
|
static_libs: ["liblz4"],
|
|
stl: "libc++_static",
|
|
}
|