blob: 7d3427d13108926cce369dbe426d8ec03703add8 [file] [edit]
# Copyright 2020 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
import("//build/zircon/migrated_targets.gni")
zx_library("devicetree") {
sources = [
"devicetree.cc",
"path.cc",
]
deps = [ "//zircon/system/ulib/fbl" ]
public_deps = [
"//zircon/system/ulib/zircon-internal:headers",
"//zircon/system/ulib/zxc:headers",
]
# TODO: revisit the following three specifications after the zircon-to-fuchsia
# build migration. They seem currently required in order to export the host
# compilation of this library to the fuchsia build.
sdk = "source"
sdk_headers = []
}