xref: /aosp_15_r20/external/bazelbuild-rules_rust/tools/rustdoc/BUILD.bazel (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifanload("//rust:defs.bzl", "rust_binary")
2*d4726bddSHONG Yifan
3*d4726bddSHONG Yifanpackage(default_visibility = ["//visibility:public"])
4*d4726bddSHONG Yifan
5*d4726bddSHONG Yifanrust_binary(
6*d4726bddSHONG Yifan    name = "rustdoc_test_writer",
7*d4726bddSHONG Yifan    srcs = ["rustdoc_test_writer.rs"],
8*d4726bddSHONG Yifan    edition = "2018",
9*d4726bddSHONG Yifan    deps = [
10*d4726bddSHONG Yifan        "//tools/runfiles",
11*d4726bddSHONG Yifan    ],
12*d4726bddSHONG Yifan)
13