Skip to content

Commit 16bfa3a

Browse files
committed
Running buildifier
Command used was buildifier -r -lint fix -mode fix .
1 parent e9748c5 commit 16bfa3a

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

common/manager/BUILD.bazel

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ exports_files(
2020
"windows/selenium-manager.exe",
2121
],
2222
visibility = [
23+
"//dotnet/src/webdriver:__pkg__",
2324
"//java/src/org/openqa/selenium/manager:__pkg__",
2425
"//java/test/org/openqa/selenium/chrome:__pkg__",
2526
"//java/test/org/openqa/selenium/edge:__pkg__",
2627
"//java/test/org/openqa/selenium/firefox:__pkg__",
28+
"//javascript/node/selenium-webdriver:__pkg__",
2729
"//py:__pkg__",
2830
"//rb:__pkg__",
29-
"//javascript/node/selenium-webdriver:__pkg__",
30-
"//dotnet/src/webdriver:__pkg__",
3131
],
3232
)

dotnet/src/webdriver/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,6 @@ nuget_package(
277277
visibility = ["//visibility:public"],
278278
deps = [
279279
":logo",
280-
":props",
281280
":manager-linux",
282281
":manager-macos",
283282
":manager-windows",
@@ -289,6 +288,7 @@ nuget_package(
289288
":net6.0",
290289
":netstandard2.0",
291290
":netstandard2.1",
291+
":props",
292292
],
293293
)
294294

java/src/org/openqa/selenium/bidi/BUILD.bazel

+7-6
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@ java_library(
2222

2323
java_library(
2424
name = "bidi",
25-
srcs = glob([
26-
"*.java",
27-
"log/*.java",
28-
"browsingcontext/*.java"
29-
],
30-
exclude = AUGMENTER_SRCS,
25+
srcs = glob(
26+
[
27+
"*.java",
28+
"log/*.java",
29+
"browsingcontext/*.java",
30+
],
31+
exclude = AUGMENTER_SRCS,
3132
),
3233
visibility = [
3334
"//java/src/org/openqa/selenium/bidi:__subpackages__",

java/src/org/openqa/selenium/remote/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ java_library(
4545
":is-displayed",
4646
],
4747
visibility = [
48-
"//java/src/org/openqa/selenium/devtools:__pkg__",
4948
"//java/src/org/openqa/selenium/bidi:__pkg__",
49+
"//java/src/org/openqa/selenium/devtools:__pkg__",
5050
],
5151
exports = [
5252
],

javascript/node/selenium-webdriver/BUILD.bazel

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SRC_FILES = [
2424
"testing/*.js",
2525
"devtools/*.js",
2626
"common/*.js",
27-
"bidi/*.js"
27+
"bidi/*.js",
2828
])
2929

3030
pkg_npm(
@@ -147,7 +147,6 @@ genrule(
147147
],
148148
) for n in BROWSER_VERSIONS]
149149

150-
151150
copy_file(
152151
name = "manager-linux",
153152
src = "//common/manager:linux/selenium-manager",

py/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ pkg_tar(
182182
genrule(
183183
name = "selenium-pkginfo",
184184
srcs = [":selenium-wheel-lib"],
185-
cmd = "cp $(location :selenium-wheel-lib)/selenium-%s.dist-info/METADATA $@" % SE_VERSION,
186185
outs = ["PKG-INFO"],
186+
cmd = "cp $(location :selenium-wheel-lib)/selenium-%s.dist-info/METADATA $@" % SE_VERSION,
187187
)
188188

189189
py_import(

0 commit comments

Comments
 (0)