| # 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" ] |
| deps = [ "//zircon/system/ulib/fbl" ] |
| |
| public_deps = [ "//zircon/system/ulib/zircon-internal: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 = [] |
| } |