| # Copyright 2023 The ChromiumOS Authors | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| load("@rules_go//go:def.bzl", "go_binary", "go_library") | |
| go_library( | |
| name = "bin_lib", | |
| srcs = ["main.go"], | |
| importpath = "cros.local/bazel/go/examples/bin", | |
| deps = ["//bazel/go/examples/lib"], | |
| ) | |
| go_binary( | |
| name = "bin", | |
| embed = [":bin_lib"], | |
| ) |