blob: daedb109ababb9e47d396f6082097c79c446aab3 [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.
# [START imports]
load(
"@rules_fuchsia//fuchsia:defs.bzl",
"fuchsia_fidl_library",
"fuchsia_fidl_llcpp_library",
)
# [END imports]
# [START fidl_library]
package(default_visibility = ["//visibility:public"])
fuchsia_fidl_library(
name = "examples.routing.echo",
srcs = [
"echo.fidl",
],
library = "examples.routing.echo",
)
fuchsia_fidl_llcpp_library(
name = "examples.routing.echo.fidl_cc",
library = ":examples.routing.echo",
deps = [
"@fuchsia_sdk//pkg/fidl_cpp_v2",
],
)
# [END fidl_library]