| # 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", | |
| ) | |
| # [END imports] | |
| # [START fidl_library] | |
| package(default_visibility = ["//visibility:public"]) | |
| fuchsia_fidl_library( | |
| name = "examples.routing.echo", | |
| srcs = [ | |
| "echo.fidl", | |
| ], | |
| cc_bindings = [ | |
| "cpp", | |
| "cpp_wire", | |
| ], | |
| ) | |
| # [END fidl_library] |