Skip to content

Commit

Permalink
[bazel]: add back the distributor to the new grid
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Nov 23, 2018
1 parent c86c8a9 commit 2c1373f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion java/server/src/org/openqa/selenium/grid/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ java_binary(
"//java/client/src/org/openqa/selenium/ie:ie",
"//java/client/src/org/openqa/selenium/safari:safari",
# "//java/server/src/org/openqa/selenium/grid/commands:commands",
# "//java/server/src/org/openqa/selenium/grid/distributor/httpd:httpd",
"//java/server/src/org/openqa/selenium/grid/distributor/httpd:httpd",
"//java/server/src/org/openqa/selenium/grid/node/httpd:httpd",
# "//java/server/src/org/openqa/selenium/grid/router/httpd:httpd",
"//java/server/src/org/openqa/selenium/grid/sessionmap/httpd",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
java_library(
name = "httpd",
srcs = glob(["*.java"]),
deps = [
"//java/client/src/org/openqa/selenium/remote/tracing",
"//java/server/src/org/openqa/selenium/cli",
"//java/server/src/org/openqa/selenium/grid/config",
"//java/server/src/org/openqa/selenium/grid/distributor",
"//java/server/src/org/openqa/selenium/grid/distributor/local",
"//java/server/src/org/openqa/selenium/grid/server",
"//third_party/java/beust:jcommander",
"//third_party/java/service",
],
visibility = [
"//java/server/src/org/openqa/selenium/grid:__pkg__",
],
)

0 comments on commit 2c1373f

Please sign in to comment.