xref: /aosp_15_r20/external/gsc-utils/rust/enum_utils_test/BUILD (revision 4f2df630800bdcf1d4f0decf95d8a1cb87344f5f)
1# Copyright 2023 The ChromiumOS Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4package(default_visibility = ["//platform:__subpackages__"])
5
6load("@rules_rust//rust:defs.bzl", "rust_test")
7
8rust_test(
9    name = "test",
10    edition = "2021",
11    srcs = ["src/lib.rs"],
12    proc_macro_deps = [
13        "//platform/gsc-utils/rust/enum_utils",
14    ],
15)
16