Skip to content

Commit

Permalink
[java] Fixing visibility of third-party libs for bazel build
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Nov 21, 2018
1 parent 1a2c53f commit 30d04e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions third_party/java/bytebuddy/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ java_import(
srcjar = 'byte-buddy-1.8.15-sources.jar',
visibility = [
'//java/client/src/org/openqa/selenium/remote:__pkg__',
"//third_party/java/mockito:mockito-core",
"//third_party/java/mockito:__pkg__",
],
)

Expand All @@ -24,6 +24,6 @@ java_import(
srcjar = 'byte-buddy-agent-1.8.15-sources.jar',
visibility = [
'//java/client/src/org/openqa/selenium/remote:__pkg__',
"//third_party/java/mockito:mockito-core",
"//third_party/java/mockito:__pkg__",
],
)
2 changes: 1 addition & 1 deletion third_party/java/objenesis/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ java_import(
deps = [
],
visibility = [
"//third_party/java/mockito:mockito-core",
"//third_party/java/mockito:__pkg__",
],
)

0 comments on commit 30d04e9

Please sign in to comment.