blob: db8ceef2386638834d2f0701159397c6ecdc906f [file] [log] [blame]
# Copyright 2022 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_fidl_library",
"fuchsia_fidl_llcpp_library",
)
fuchsia_fidl_library(
name = "examples.i2c.temperature",
srcs = [
"i2c_temperature.fidl",
],
library = "examples.i2c.temperature",
visibility = ["//visibility:public"],
deps = [
"@fuchsia_sdk//fidl/zx:zx",
],
)
fuchsia_fidl_llcpp_library(
name = "examples.i2c.temperature_cc",
library = ":examples.i2c.temperature",
visibility = ["//visibility:public"],
deps = [
"@fuchsia_sdk//fidl/zx:zx_llcpp_cc",
"@fuchsia_sdk//pkg/fidl_cpp_wire",
],
)