blob: 26755ece12435148fdb5a2176e3f167478758050 [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.
# If not building for Fuchsia (e.g., linux, macos) then binaries need to get
# zircon headers directly from source. Otherwise they come from sysroot.
config("public_config") {
include_dirs = [ "." ]
visibility = [ ":*" ]
}
# These headers are exported for use in building non-fuchsia-host binaries.
source_set("public") {
public = [
"zircon/analyzer.h",
"zircon/boot/netboot.h",
"zircon/compiler.h",
"zircon/device/block.h",
"zircon/errors.h",
"zircon/limits.h",
"zircon/rights.h",
"zircon/syscalls/object.h",
"zircon/types.h",
]
# Since this doesn't actually compile any code, don't let it contribute any
# implicit link inputs from default configs.
configs = []
public_configs = [ ":public_config" ]
}