blob: 7e4d98b53cb0e955b2fce152d60e9fd0bacd5bc5 [file] [log] [blame]
# Copyright 2017 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.
config("pretty_config") {
include_dirs = [ "include" ]
}
static_library("pretty") {
sources = [
"hexdump.c",
"sizes.c",
]
public = [
"include/pretty/hexdump.h",
"include/pretty/sizes.h",
]
deps = [
"//zircon/system/public",
]
public_configs = [ ":pretty_config" ]
}