-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bazel]: compile all grid tests using bazel
- Loading branch information
Showing
38 changed files
with
545 additions
and
45 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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
java_library( | ||
name = "concurrent", | ||
srcs = glob(["*.java"]), | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid:__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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
java_library( | ||
name = "events", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/json", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/events:__subpackages__", | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
], | ||
) |
12 changes: 12 additions & 0 deletions
12
java/server/src/org/openqa/selenium/events/local/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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
java_library( | ||
name = "local", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/server/src/org/openqa/selenium/events", | ||
"//java/server/src/org/openqa/selenium/grid/config", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
], | ||
) |
15 changes: 15 additions & 0 deletions
15
java/server/src/org/openqa/selenium/events/zeromq/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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
java_library( | ||
name = "zeromq", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/net", | ||
"//java/server/src/org/openqa/selenium/events", | ||
"//java/server/src/org/openqa/selenium/grid/config", | ||
"//third_party/java/guava", | ||
"//third_party/java/zeromq:jeromq", | ||
], | ||
visibility = [ | ||
"//java/server/test/org/openqa/selenium/grid/router:__pkg__", | ||
], | ||
) |
9 changes: 9 additions & 0 deletions
9
java/server/src/org/openqa/selenium/grid/component/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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
java_library( | ||
name = "component", | ||
srcs = glob(["*.java"]), | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/src/org/openqa/selenium/netty/server:__pkg__", | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
], | ||
) |
13 changes: 13 additions & 0 deletions
13
java/server/src/org/openqa/selenium/grid/config/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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
java_library( | ||
name = "config", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/events:__subpackages__", | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/src/org/openqa/selenium/netty/server:__pkg__", | ||
"//java/server/test/org/openqa/selenium/grid:__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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
java_library( | ||
name = "data", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium:core", | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/server/src/org/openqa/selenium/events", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
], | ||
) |
19 changes: 19 additions & 0 deletions
19
java/server/src/org/openqa/selenium/grid/distributor/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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
java_library( | ||
name = "distributor", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium:core", | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote/http", | ||
"//java/client/src/org/openqa/selenium/remote/tracing", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/node", | ||
"//java/server/src/org/openqa/selenium/grid/node/remote", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
] | ||
) |
22 changes: 22 additions & 0 deletions
22
java/server/src/org/openqa/selenium/grid/distributor/local/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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
java_library( | ||
name = "local", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/client/src/org/openqa/selenium/remote/tracing", | ||
"//java/server/src/org/openqa/selenium/concurrent", | ||
"//java/server/src/org/openqa/selenium/events", | ||
"//java/server/src/org/openqa/selenium/grid/component", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/distributor", | ||
"//java/server/src/org/openqa/selenium/grid/node", | ||
"//java/server/src/org/openqa/selenium/grid/node/remote", | ||
"//java/server/src/org/openqa/selenium/grid/sessionmap", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/test/org/openqa/selenium/grid/distributor:__pkg__", | ||
"//java/server/test/org/openqa/selenium/grid/router:__pkg__", | ||
] | ||
) |
17 changes: 17 additions & 0 deletions
17
java/server/src/org/openqa/selenium/grid/distributor/remote/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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
java_library( | ||
name = "remote", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium:core", | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote/tracing", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/distributor", | ||
"//java/server/src/org/openqa/selenium/grid/node", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
], | ||
visibility = [ | ||
"//java/server/test/org/openqa/selenium/grid/distributor:__pkg__", | ||
"//java/server/test/org/openqa/selenium/grid/router:__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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
java_library( | ||
name = "node", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium:core", | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/client/src/org/openqa/selenium/remote/http", | ||
"//java/client/src/org/openqa/selenium/remote/tracing", | ||
"//java/server/src/org/openqa/selenium/grid/component", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
] | ||
) |
19 changes: 19 additions & 0 deletions
19
java/server/src/org/openqa/selenium/grid/node/local/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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
java_library( | ||
name = "local", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/client/src/org/openqa/selenium/remote/tracing", | ||
"//java/server/src/org/openqa/selenium/concurrent", | ||
"//java/server/src/org/openqa/selenium/events", | ||
"//java/server/src/org/openqa/selenium/grid/component", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/node", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
], | ||
) |
20 changes: 20 additions & 0 deletions
20
java/server/src/org/openqa/selenium/grid/node/remote/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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
java_library( | ||
name = "remote", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/net", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/client/src/org/openqa/selenium/remote/tracing", | ||
"//java/server/src/org/openqa/selenium/grid/component", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/node", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid/distributor:__subpackages__", | ||
"//java/server/test/org/openqa/selenium/grid/node:__pkg__", | ||
"//java/server/test/org/openqa/selenium/grid/router:__pkg__", | ||
], | ||
) |
19 changes: 19 additions & 0 deletions
19
java/server/src/org/openqa/selenium/grid/router/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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
java_library( | ||
name = "router", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/net", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/client/src/org/openqa/selenium/remote/tracing", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/distributor", | ||
"//java/server/src/org/openqa/selenium/grid/server", | ||
"//java/server/src/org/openqa/selenium/grid/sessionmap", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
] | ||
) |
23 changes: 23 additions & 0 deletions
23
java/server/src/org/openqa/selenium/grid/server/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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
java_library( | ||
name = "server", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium:core", | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/net", | ||
"//java/client/src/org/openqa/selenium/remote/http", | ||
"//java/server/src/org/openqa/selenium/events", | ||
"//java/server/src/org/openqa/selenium/grid/component", | ||
"//java/server/src/org/openqa/selenium/grid/config", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
"//third_party/java/beust:jcommander", | ||
"//third_party/java/guava", | ||
"//third_party/java/jetty", | ||
"//third_party/java/servlet:javax.servlet-api", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/src/org/openqa/selenium/netty/server:__pkg__", | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
], | ||
) |
17 changes: 17 additions & 0 deletions
17
java/server/src/org/openqa/selenium/grid/sessionmap/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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
java_library( | ||
name = "sessionmap", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium:core", | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/client/src/org/openqa/selenium/remote/http", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
], | ||
) |
14 changes: 14 additions & 0 deletions
14
java/server/src/org/openqa/selenium/grid/sessionmap/local/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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
java_library( | ||
name = "local", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/client/src/org/openqa/selenium/remote/tracing", | ||
"//java/server/src/org/openqa/selenium/events", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/sessionmap", | ||
], | ||
visibility = [ | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
] | ||
) |
14 changes: 14 additions & 0 deletions
14
java/server/src/org/openqa/selenium/grid/sessionmap/remote/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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
java_library( | ||
name = "remote", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/server/src/org/openqa/selenium/grid/data", | ||
"//java/server/src/org/openqa/selenium/grid/sessionmap", | ||
"//java/server/src/org/openqa/selenium/grid/web", | ||
], | ||
visibility = [ | ||
"//java/server/test/org/openqa/selenium/grid:__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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
java_library( | ||
name = "web", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//java/client/src/org/openqa/selenium:core", | ||
"//java/client/src/org/openqa/selenium/json", | ||
"//java/client/src/org/openqa/selenium/remote", | ||
"//java/client/src/org/openqa/selenium/remote/http", | ||
"//third_party/java/guava", | ||
], | ||
visibility = [ | ||
"//java/server/src/org/openqa/selenium/grid:__subpackages__", | ||
"//java/server/test/org/openqa/selenium/grid:__subpackages__", | ||
], | ||
) |
Oops, something went wrong.