blob: 723bfb73493137c5da5eb018b67ce937d3edf23c [file] [log] [blame]
# Copyright 2016 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.
executable("164.gzip") {
sources = [
"src/bits.c",
"src/deflate.c",
"src/gzip.c",
"src/inflate.c",
"src/lzw.c",
"src/spec.c",
"src/trees.c",
"src/unlzh.c",
"src/unlzw.c",
"src/unpack.c",
"src/unzip.c",
"src/util.c",
"src/zip.c",
]
cflags_c = [
"-Wno-format",
"-Wno-implicit-function-declaration",
"-Wno-macro-redefined",
"-Wno-unused-function",
"-Wno-unused-variable",
]
defines = [ "SPEC_CPU2000" ]
data = [
"data/ref/input/input.graphic",
"data/ref/input/input.log",
"data/ref/input/input.program",
"data/ref/input/input.random",
"data/ref/input/input.source",
]
}