Skip to content

Commit

Permalink
[bazel] Add build rules for Edge HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jul 9, 2019
1 parent 14348a7 commit 5e04a20
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
15 changes: 14 additions & 1 deletion java/client/src/org/openqa/selenium/edge/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
java_library(
name = "edge",
exports = [
":edgeium",
"//java/client/src/org/openqa/selenium/edge/edgehtml",
],
visibility = [
"//visibility:public",
]
)

java_library(
name = "edgeium",
srcs = glob(["*.java"]),
visibility = ["//visibility:public"],
visibility = [
"//java/client/src/org/openqa/selenium/edge:__subpackages__",
],
deps = [
"//java/client/src/org/openqa/selenium:core",
"//java/client/src/org/openqa/selenium/chromium",
Expand Down
13 changes: 13 additions & 0 deletions java/client/src/org/openqa/selenium/edge/edgehtml/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
java_library(
name = "edgehtml",
srcs = glob(["*.java"]),
deps = [
"//java/client/src/org/openqa/selenium/edge:edgeium",
"//java/client/src/org/openqa/selenium/remote",
"//third_party/java/guava",
"//third_party/java/service:service",
],
visibility = [
"//java/client/src/org/openqa/selenium/edge:__subpackages__",
]
)

0 comments on commit 5e04a20

Please sign in to comment.