blob: 068a64a791507bbdbc02eb1a22ae8464412ee73e [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("pretty") {
sdk = "static"
sdk_headers = [
"pretty/hexdump.h",
"pretty/sizes.h",
]
kernel = true
host = true
static = true
sources = [
"sizes.c",
]
if (!is_kernel) {
sources += [ "hexdump.c" ]
}
}
test("pretty-test") {
sources = [
"test.c",
]
deps = [
":pretty",
"$zx/system/ulib/fdio",
"$zx/system/ulib/unittest",
]
}