blob: e85203ea702674a3d2be9b6aa41eeb4c0c31ee79 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
library("lz4") {
sdk = "static"
sdk_headers = [
"lz4/lz4.h",
"lz4/lz4frame_static.h",
"lz4/lz4frame.h",
"lz4/lz4hc.h",
"lz4/xxhash.h",
]
host = true
sources = [
"lz4.c",
"lz4frame.c",
"lz4hc.c",
"xxhash.c",
]
include_dirs = [ "include/lz4" ]
defines = [ "XXH_NAMESPACE=LZ4_" ]
cflags = [ "-Wno-implicit-fallthrough" ]
}