-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathBUILD.cpp_demangle-0.3.5.bazel
98 lines (93 loc) · 2.23 KB
/
BUILD.cpp_demangle-0.3.5.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//bazel/cargo/wasmtime:crates_vendor
###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"])
rust_library(
name = "cpp_demangle",
srcs = glob(
include = ["**/*.rs"],
allow_empty = False,
),
compile_data = glob(
include = ["**"],
allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_features = [
"default",
"std",
],
crate_root = "src/lib.rs",
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-bazel",
"crate-name=cpp_demangle",
"manual",
"noclippy",
"norustfmt",
],
version = "0.3.5",
deps = [
"@cu__cfg-if-1.0.0//:cfg_if",
"@cu__cpp_demangle-0.3.5//:build_script_build",
],
)
cargo_build_script(
name = "cpp_demangle_bs",
srcs = glob(
include = ["**/*.rs"],
allow_empty = False,
),
crate_features = [
"default",
"std",
],
crate_name = "build_script_build",
crate_root = "build.rs",
data = glob(
include = ["**"],
allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-bazel",
"crate-name=cpp_demangle",
"manual",
"noclippy",
"norustfmt",
],
version = "0.3.5",
visibility = ["//visibility:private"],
)
alias(
name = "build_script_build",
actual = ":cpp_demangle_bs",
tags = ["manual"],
)