blob: eec760912e38262d4ccae275507b6ec47da6e663 [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_hlcpp_library",
"fuchsia_fidl_library",
)
package(default_visibility = ["//visibility:public"])
fuchsia_fidl_library(
name = "fidl.examples.routing.echo",
srcs = [
"echo.fidl",
],
library = "fidl.examples.routing.echo",
)
fuchsia_fidl_hlcpp_library(
name = "fidl.examples.routing.echo.fidl_cc",
library = ":fidl.examples.routing.echo",
deps = [
"@fuchsia_sdk//pkg/fidl_cpp",
],
)