-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bazel] Reformat all build and bzl files using buildifier
- Loading branch information
Simon Stewart
committed
Nov 22, 2018
1 parent
2ed1c5e
commit a178bc7
Showing
85 changed files
with
660 additions
and
653 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# BUILD FILE SYNTAX: SKYLARK | ||
|
||
SE_VERSION = '3.141.0' | ||
ASSEMBLY_VERSION = '3.141.0.0' | ||
SE_VERSION = "3.141.0" | ||
ASSEMBLY_VERSION = "3.141.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# Required to allow load of selenium-version.bzl to work | ||
# Required to allow load of selenium-version.bzl to work |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
java_library( | ||
name = "io", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium", | ||
], | ||
visibility = [ | ||
"//java/client/src/org/openqa/selenium/os:__pkg__", | ||
"//java/client/src/org/openqa/selenium/remote:__pkg__", | ||
], | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
java_library( | ||
name = "json", | ||
srcs = glob(["*.java"]), | ||
visibility = [ | ||
"//java/client/src/org/openqa/selenium/remote:__pkg__", | ||
], | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium", | ||
"//java/client/src/org/openqa/selenium/remote:types", | ||
"//third_party/java/guava:guava", | ||
], | ||
visibility = [ | ||
"//java/client/src/org/openqa/selenium/remote:__pkg__", | ||
"//third_party/java/guava", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
java_library( | ||
name = "net", | ||
srcs = glob(["*.java"]), | ||
visibility = [ | ||
"//java/client/src/org/openqa/selenium/remote:__pkg__", | ||
], | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/client/src/org/openqa/selenium/remote:__pkg__", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
java_library( | ||
name = "os", | ||
srcs = glob(["*.java"]), | ||
visibility = [ | ||
"//java/client/src/org/openqa/selenium/remote:__pkg__", | ||
], | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium", | ||
"//java/client/src/org/openqa/selenium/io", | ||
"//third_party/java/commons:commons-exec", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/client/src/org/openqa/selenium/remote:__pkg__", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 5 additions & 6 deletions
11
java/client/src/org/openqa/selenium/remote/tracing/BUILD.bazel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
|
||
java_library( | ||
name = "tracing", | ||
srcs = glob(["*.java"]), | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium:__subpackages__", | ||
"//java/server/test/org/openqa/selenium:__subpackages__", | ||
], | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//third_party/java/guava", | ||
"//third_party/java/contrib:opentracing-tracerresolver", | ||
"//third_party/java/guava", | ||
"//third_party/java/opencensus:opencensus-api", | ||
"//third_party/java/opentracing:opentracing-api", | ||
"//third_party/java/opentracing:opentracing-noop", | ||
"//third_party/java/opentracing:opentracing-util", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium:__subpackages__", | ||
"//java/server/test/org/openqa/selenium:__subpackages__", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.