Skip to content

Commit 81f5579

Browse files
committed
Run buildifier with all the toggles on. No logical changes
1 parent bb54b1f commit 81f5579

File tree

16 files changed

+24
-24
lines changed

16 files changed

+24
-24
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ python_register_multi_toolchains(
6262
)
6363

6464
load("@python//:pip.bzl", "multi_pip_parse")
65-
load("@python//3.11:defs.bzl", interpreter_3_11 = "interpreter")
6665
load("@python//3.10:defs.bzl", interpreter_3_10 = "interpreter")
67-
load("@python//3.9:defs.bzl", interpreter_3_9 = "interpreter")
66+
load("@python//3.11:defs.bzl", interpreter_3_11 = "interpreter")
6867
load("@python//3.8:defs.bzl", interpreter_3_8 = "interpreter")
68+
load("@python//3.9:defs.bzl", interpreter_3_9 = "interpreter")
6969

7070
multi_pip_parse(
7171
name = "py_dev_requirements",
@@ -316,12 +316,12 @@ http_archive(
316316
url = "https://github.com/p0deje/rules_ruby/archive/9550503e1c1702375e87837d43eb137030edd28a.zip",
317317
)
318318

319-
load("//rb:ruby_version.bzl", "RUBY_VERSION")
320319
load(
321320
"@rules_ruby//ruby:deps.bzl",
322321
"rb_bundle",
323322
"rb_register_toolchains",
324323
)
324+
load("//rb:ruby_version.bzl", "RUBY_VERSION")
325325

326326
rb_register_toolchains(version = RUBY_VERSION)
327327

common/remote-build/cc/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
# This becomes the BUILD file for @local_config_cc// under non-BSD unixes.
1616

17-
load(":cc_toolchain_config.bzl", "cc_toolchain_config")
18-
load(":armeabi_cc_toolchain_config.bzl", "armeabi_cc_toolchain_config")
1917
load("@rules_cc//cc:defs.bzl", "cc_toolchain", "cc_toolchain_suite")
18+
load(":armeabi_cc_toolchain_config.bzl", "armeabi_cc_toolchain_config")
19+
load(":cc_toolchain_config.bzl", "cc_toolchain_config")
2020

2121
package(default_visibility = ["//visibility:public"])
2222

common/remote-build/cc/cc_toolchain_config.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
"""A Starlark cc_toolchain configuration rule"""
1616

17+
load("@bazel_tools//tools/build_defs/cc:action_names.bzl", "ACTION_NAMES")
1718
load(
1819
"@bazel_tools//tools/cpp:cc_toolchain_config_lib.bzl",
1920
"action_config",
@@ -27,7 +28,6 @@ load(
2728
"variable_with_value",
2829
"with_feature_set",
2930
)
30-
load("@bazel_tools//tools/build_defs/cc:action_names.bzl", "ACTION_NAMES")
3131

3232
def layering_check_features(compiler):
3333
if compiler != "clang":

dotnet/defs.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
load("//dotnet:selenium-dotnet-version.bzl", "SUPPORTED_DEVTOOLS_VERSIONS")
12
load("//dotnet/private:assembly_info.bzl", _generated_assembly_info = "generated_assembly_info")
23
load("//dotnet/private:executable_assembly.bzl", _csharp_executable = "csharp_executable")
34
load("//dotnet/private:generate_devtools.bzl", _generate_devtools = "generate_devtools")
45
load("//dotnet/private:merge_assemblies.bzl", _merged_assembly = "merged_assembly")
56
load("//dotnet/private:nuget.bzl", _nuget_package = "nuget_package", _nuget_push = "nuget_push")
67
load("//dotnet/private:nunit_test.bzl", _nunit_test = "nunit_test")
7-
load("//dotnet:selenium-dotnet-version.bzl", "SUPPORTED_DEVTOOLS_VERSIONS")
88

99
def devtools_version_targets():
1010
targets = []

dotnet/private/executable_assembly.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
load("@d2l_rules_csharp//csharp/private:providers.bzl", "AnyTargetFrameworkInfo")
21
load("@d2l_rules_csharp//csharp/private:actions/assembly.bzl", "AssemblyAction")
32
load("@d2l_rules_csharp//csharp/private:actions/misc.bzl", "write_runtimeconfig")
43
load(
@@ -8,6 +7,7 @@ load(
87
"is_debug",
98
"is_standard_framework",
109
)
10+
load("@d2l_rules_csharp//csharp/private:providers.bzl", "AnyTargetFrameworkInfo")
1111
load("//dotnet/private:copy_files.bzl", "copy_files")
1212

1313
def _generate_execution_script_file(ctx, target):

dotnet/private/nuget.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
load("@bazel_skylib//rules:common_settings.bzl", "BuildSettingInfo")
2-
load("//dotnet/private:copy_files.bzl", "copy_files")
32
load(
43
"//dotnet:selenium-dotnet-version.bzl",
54
"SUPPORTED_NET_STANDARD_VERSIONS",
65
)
6+
load("//dotnet/private:copy_files.bzl", "copy_files")
77

88
def _nuget_push_impl(ctx):
99
args = [

dotnet/src/support/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
load("//common:defs.bzl", "copy_file")
21
load("@d2l_rules_csharp//csharp:defs.bzl", "csharp_library")
2+
load("//common:defs.bzl", "copy_file")
33
load(
44
"//dotnet:defs.bzl",
55
"generated_assembly_info",

dotnet/src/webdriver/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
load("//common:defs.bzl", "copy_file")
21
load("@d2l_rules_csharp//csharp:defs.bzl", "csharp_library")
2+
load("//common:defs.bzl", "copy_file")
33
load(
44
"//dotnet:defs.bzl",
55
"devtools_version_targets",

java/defs.bzl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
load(
2+
"@contrib_rules_jvm//java:defs.bzl",
3+
_JUNIT5_DEPS = "JUNIT5_DEPS",
4+
_java_test_suite = "java_test_suite",
5+
)
16
load(
27
"@rules_java//java:defs.bzl",
38
_java_binary = "java_binary",
@@ -10,11 +15,6 @@ load("//java/private:merge_jars.bzl", _merge_jars = "merge_jars")
1015
load("//java/private:module.bzl", _java_module = "java_module")
1116
load("//java/private:selenium_test.bzl", _selenium_test = "selenium_test")
1217
load("//java/private:suite.bzl", _java_selenium_test_suite = "java_selenium_test_suite")
13-
load(
14-
"@contrib_rules_jvm//java:defs.bzl",
15-
_JUNIT5_DEPS = "JUNIT5_DEPS",
16-
_java_test_suite = "java_test_suite",
17-
)
1818

1919
def java_test_suite(name, runner = "junit5", **kwargs):
2020
_java_test_suite(name = name, runner = runner, **kwargs)

java/private/suite.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
load(":library.bzl", "java_library", "java_test")
2-
load(":selenium_test.bzl", "BROWSERS", "selenium_test")
32
load(":package.bzl", "package_name")
3+
load(":selenium_test.bzl", "BROWSERS", "selenium_test")
44

55
_test_attrs = [
66
"browsers",

0 commit comments

Comments
 (0)