blob: d9fc7f7e8f57bef8f8166bad4f5c87cf0fbbbb72 [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/compiler.h",
"zircon/errors.h",
"zircon/syscalls/object.h",
"zircon/types.h",
]
public_configs = [ ":public_config" ]
}