blob: a6680abfb2c0dd9c1c16c5d00753f9ac91697ea8 [file] [log] [blame]
Brian Silverman5f6f2762022-08-13 19:30:05 -07001###############################################################################
2# @generated
3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
5#
6# bazel run //tools/rust_analyzer/3rdparty:crates_vendor
7###############################################################################
8
9load(
10 "@bazel_skylib//lib:selects.bzl",
11 "selects",
12)
13load(
14 "@rules_rust//cargo:defs.bzl",
15 "cargo_build_script",
16)
17
18# buildifier: disable=bzl-visibility
19load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or")
20load(
21 "@rules_rust//rust:defs.bzl",
22 "rust_library",
23)
24
25package(default_visibility = ["//visibility:public"])
26
27# licenses([
28# "TODO", # MIT/Apache-2.0
29# ])
30
31rust_library(
32 name = "winapi_i686_pc_windows_gnu",
33 srcs = glob(
34 include = [
35 "**/*.rs",
36 ],
37 exclude = [
38 ],
39 ),
40 aliases = selects.with_or({
41 "//conditions:default": {
42 },
43 }),
44 compile_data = glob(
45 include = ["**"],
46 exclude = [
47 "BUILD",
48 "BUILD.bazel",
49 "WORKSPACE",
50 "WORKSPACE.bazel",
51 ],
52 ) + select_with_or({
53 "//conditions:default": [
54 ],
55 }),
56 crate_features = [
57 ],
58 crate_root = "src/lib.rs",
59 data = select_with_or({
60 "//conditions:default": [
61 ],
62 }),
63 edition = "2015",
64 proc_macro_deps = [
65 ] + select_with_or({
66 "//conditions:default": [
67 ],
68 }),
69 rustc_env = {
70 },
71 rustc_env_files = select_with_or({
72 "//conditions:default": [
73 ],
74 }),
75 rustc_flags = [
76 # In most cases, warnings in 3rd party crates are not interesting as
77 # they're out of the control of consumers. The flag here silences
78 # warnings. For more details see:
79 # https://doc.rust-lang.org/rustc/lints/levels.html
80 "--cap-lints=allow",
81 ],
82 tags = [
83 "cargo-bazel",
84 "manual",
85 "noclippy",
86 "norustfmt",
87 ],
88 version = "0.4.0",
89 deps = [
90 ] + select_with_or({
91 "//conditions:default": [
92 "@rules_rust_rust_analyzer__winapi-i686-pc-windows-gnu-0.4.0//:build_script_build",
93 ],
94 }),
95)
96
97cargo_build_script(
98 # See comment associated with alias. Do not change this name
99 name = "winapi-i686-pc-windows-gnu_build_script",
100 srcs = glob(
101 include = [
102 "**/*.rs",
103 ],
104 exclude = [
105 ],
106 ),
107 aliases = selects.with_or({
108 "//conditions:default": {
109 },
110 }),
111 build_script_env = {
112 },
113 compile_data = select_with_or({
114 "//conditions:default": [
115 ],
116 }),
117 crate_features = [
118 ],
119 crate_name = "build_script_build",
120 crate_root = "build.rs",
121 data = glob(["**"]) + select_with_or({
122 "//conditions:default": [
123 ],
124 }),
125 edition = "2015",
126 proc_macro_deps = [
127 ] + select_with_or({
128 "//conditions:default": [
129 ],
130 }),
131 rustc_env = {
132 },
133 rustc_env_files = select_with_or({
134 "//conditions:default": [
135 ],
136 }),
137 rustc_flags = [
138 # In most cases, warnings in 3rd party crates are not interesting as
139 # they're out of the control of consumers. The flag here silences
140 # warnings. For more details see:
141 # https://doc.rust-lang.org/rustc/lints/levels.html
142 "--cap-lints=allow",
143 ],
144 tags = [
145 "cargo-bazel",
146 "manual",
147 "noclippy",
148 "norustfmt",
149 ],
150 tools = select_with_or({
151 "//conditions:default": [
152 ],
153 }),
154 version = "0.4.0",
155 visibility = ["//visibility:private"],
156 deps = [
157 ] + select_with_or({
158 "//conditions:default": [
159 ],
160 }),
161)
162
163alias(
164 # Because `cargo_build_script` does some invisible target name mutating to
165 # determine the package and crate name for a build script, the Bazel
166 # target namename of any build script cannot be the Cargo canonical name
167 # of `build_script_build` without losing out on having certain Cargo
168 # environment variables set.
169 name = "build_script_build",
170 actual = "winapi-i686-pc-windows-gnu_build_script",
171 tags = [
172 "manual",
173 ],
174)