From c118b3d2e7b9cbdad5ce91da4e3b2dc2b7945c74 Mon Sep 17 00:00:00 2001 From: Yecheng Zhao Date: Mon, 9 Oct 2023 23:33:28 +0000 Subject: Add BUILD file for cfg-if kleaf build Test: touch external/rust/crates/cfg-if/WORKSPACE && \ b build @cfg-if \ --override_repository=cfg-if=external/rust/crates/cfg-if/ Bug: 304282799 Change-Id: I002448983c275d219be92c87ef8870258d406789 --- BUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 BUILD diff --git a/BUILD b/BUILD new file mode 100644 index 0000000..d3289e1 --- /dev/null +++ b/BUILD @@ -0,0 +1,36 @@ +load("@rules_license//rules:license.bzl", "license") +load("@rules_license//rules:license_kind.bzl", "license_kind") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package( + default_applicable_licenses = [":license"], + default_visibility = ["//visibility:public"], +) + +license( + name = "license", + license_kinds = [ + ":SPDX-license-identifier-Apache-2.0", + ":SPDX-license-identifier-MIT", + ], + license_text = "LICENSE-APACHE", + visibility = [":__subpackages__"], +) + +license_kind( + name = "SPDX-license-identifier-Apache-2.0", + conditions = ["notice"], + url = "https://spdx.org/licenses/Apache-2.0.html", +) + +license_kind( + name = "SPDX-license-identifier-MIT", + conditions = ["notice"], + url = "", +) + +rust_library( + name = "cfg-if", + srcs = glob(["**/*.rs"]), + edition = "2018", +) -- cgit v1.2.3