Skip to content

Commit 9adfdca

Browse files
authored
Various cleanups (bazelbuild#1828)
1 parent 4fa4123 commit 9adfdca

13 files changed

+56
-34
lines changed

docs/index.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ To build with a particular version of the Rust compiler, pass that version to [`
6060
```python
6161
rust_register_toolchains(
6262
edition = "2021",
63-
versions = ["1.66.1"],
63+
versions = [
64+
"1.66.1"
65+
],
6466
)
6567
```
6668

proto/repositories.bzl

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# buildifier: disable=module-docstring
15+
"""Dependencies for Rust proto rules"""
16+
1617
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1718
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
1819
load("//proto/3rdparty/crates:defs.bzl", "crate_repositories")

rust/private/clippy.bzl

+6-2
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,12 @@ rust_clippy_aspect = aspect(
217217
doc = "The desired `--error-format` flags for clippy",
218218
default = "//:error_format",
219219
),
220-
"_extra_rustc_flag": attr.label(default = "//:extra_rustc_flag"),
221-
"_extra_rustc_flags": attr.label(default = "//:extra_rustc_flags"),
220+
"_extra_rustc_flag": attr.label(
221+
default = Label("//:extra_rustc_flag"),
222+
),
223+
"_extra_rustc_flags": attr.label(
224+
default = Label("//:extra_rustc_flags"),
225+
),
222226
"_process_wrapper": attr.label(
223227
doc = "A process wrapper for running clippy on all platforms",
224228
default = Label("//util/process_wrapper"),

rust/private/dummy_cc_toolchain/dummy_cc_toolchain.bzl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# buildifier: disable=module-docstring
1+
"""Cc toolchain definitions for use on wasm platforms"""
2+
23
def _dummy_cc_toolchain_impl(_ctx):
34
# The `all_files` attribute is referenced by rustc_compile_action().
45
return [platform_common.ToolchainInfo(all_files = depset([]))]

rust/private/rust.bzl

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# buildifier: disable=module-docstring
15+
"""Rust rule implementations"""
16+
1617
load("@bazel_skylib//lib:paths.bzl", "paths")
1718
load("//rust/private:common.bzl", "rust_common")
1819
load("//rust/private:rustc.bzl", "rustc_compile_action")

rust/private/transitions.bzl

+2-21
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,6 @@
1-
# buildifier: disable=module-docstring
2-
load("//rust:defs.bzl", "rust_common")
3-
4-
def _wasm_bindgen_transition(_settings, _attr):
5-
"""The implementation of the `wasm_bindgen_transition` transition
6-
7-
Args:
8-
_settings (dict): A dict {String:Object} of all settings declared
9-
in the inputs parameter to `transition()`
10-
_attr (dict): A dict of attributes and values of the rule to which
11-
the transition is attached
12-
13-
Returns:
14-
dict: A dict of new build settings values to apply
15-
"""
16-
return {"//command_line_option:platforms": str(Label("//rust/platform:wasm"))}
1+
"""Internal transition implementations for core Rust rules"""
172

18-
wasm_bindgen_transition = transition(
19-
implementation = _wasm_bindgen_transition,
20-
inputs = [],
21-
outputs = ["//command_line_option:platforms"],
22-
)
3+
load("//rust:defs.bzl", "rust_common")
234

245
def _import_macro_dep_bootstrap_transition(_settings, _attr):
256
"""The implementation of the `import_macro_dep_bootstrap_transition` transition.

rust/toolchain.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ rust_toolchain = rule(
729729
default = Label("@bazel_tools//tools/cpp:current_cc_toolchain"),
730730
),
731731
"_pipelined_compilation": attr.label(
732-
default = "@rules_rust//rust/settings:pipelined_compilation",
732+
default = Label("//rust/settings:pipelined_compilation"),
733733
),
734734
"_rename_first_party_crates": attr.label(
735735
default = Label("//rust/settings:rename_first_party_crates"),

test/load_arbitrary_tool/load_arbitrary_tool_test.bzl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# buildifier: disable=module-docstring
1+
"""Tests for `load_arbitrary_tool`"""
2+
23
load("//rust:repositories.bzl", "load_arbitrary_tool")
34
load("//rust/platform:triple.bzl", "get_host_triple")
45
load("//rust/platform:triple_mappings.bzl", "system_to_binary_ext")

wasm_bindgen/BUILD.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ bzl_library(
2020
deps = [
2121
"//rust:bzl_lib",
2222
"//wasm_bindgen/3rdparty:bzl_lib",
23+
"//wasm_bindgen/private:bzl_lib",
2324
],
2425
)
2526

wasm_bindgen/private/BUILD.bazel

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
2+
3+
bzl_library(
4+
name = "bzl_lib",
5+
srcs = [
6+
"transitions.bzl",
7+
],
8+
visibility = ["//wasm_bindgen:__pkg__"],
9+
)

wasm_bindgen/private/transitions.bzl

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
"""Transition implementations for wasm-bindgen rust Rules"""
2+
3+
def _wasm_bindgen_transition(_settings, _attr):
4+
"""The implementation of the `wasm_bindgen_transition` transition
5+
6+
Args:
7+
_settings (dict): A dict {String:Object} of all settings declared
8+
in the inputs parameter to `transition()`
9+
_attr (dict): A dict of attributes and values of the rule to which
10+
the transition is attached
11+
12+
Returns:
13+
dict: A dict of new build settings values to apply
14+
"""
15+
return {"//command_line_option:platforms": str(Label("//rust/platform:wasm"))}
16+
17+
wasm_bindgen_transition = transition(
18+
implementation = _wasm_bindgen_transition,
19+
inputs = [],
20+
outputs = ["//command_line_option:platforms"],
21+
)

wasm_bindgen/repositories.bzl

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# buildifier: disable=module-docstring
15+
"""Dependency definitions for wasm-bindgen rules"""
16+
1617
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1718
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
1819
load("//wasm_bindgen/3rdparty/crates:defs.bzl", "crate_repositories")

wasm_bindgen/wasm_bindgen.bzl

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# buildifier: disable=module-docstring
16-
load("//rust:defs.bzl", "rust_common")
15+
"""Bazel rules for [wasm-bindgen](https://crates.io/crates/wasm-bindgen)"""
1716

18-
# buildifier: disable=bzl-visibility
19-
load("//rust/private:transitions.bzl", "wasm_bindgen_transition")
17+
load("//rust:defs.bzl", "rust_common")
2018
load(
2119
"//wasm_bindgen:providers.bzl",
2220
"DeclarationInfo",
2321
"JSModuleInfo",
2422
)
23+
load("//wasm_bindgen/private:transitions.bzl", "wasm_bindgen_transition")
2524

2625
_WASM_BINDGEN_DOC = """\
2726
Generates javascript and typescript bindings for a webassembly module using [wasm-bindgen][ws].

0 commit comments

Comments
 (0)