blob: 7371683e06946b48cc28d9d6ce64b936892c29f9 [file] [log] [blame] [edit]
# Copyright 2024 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.
load(
"@rules_fuchsia//fuchsia:defs.bzl",
"fuchsia_devicetree_visitor",
)
fuchsia_devicetree_visitor(
name = "example-visitor",
srcs = [
"example-visitor.cc",
],
hdrs = ["example-visitor.h"],
visibility = ["//visibility:public"],
deps = [
"@internal_sdk//pkg/devicetree-driver-visitors",
"@internal_sdk//pkg/devicetree-registration",
],
)