Skip to content

Commit 2c1bd2b

Browse files
committed
The standalone server should include all the drivers
Run ALL THE THINGS.
1 parent 5fa739c commit 2c1bd2b

File tree

2 files changed

+6
-5
lines changed
  • java
    • client/src/org/openqa/selenium
    • server/src/org/openqa/grid/selenium

2 files changed

+6
-5
lines changed

java/client/src/org/openqa/selenium/BUCK

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ java_library(name = 'primitives',
137137

138138
java_library(
139139
name = 'client-combined',
140-
deps = [
140+
exported_deps = [
141141
"//java/client/src/org/openqa/selenium/chrome:chrome",
142142
"//java/client/src/org/openqa/selenium/firefox:firefox",
143143
"//java/client/src/org/openqa/selenium/edge:edge",
@@ -148,5 +148,8 @@ java_library(
148148
"//java/client/src/org/openqa/selenium/safari:safari",
149149
"//java/client/src/org/openqa/selenium/support:support",
150150
"//third_party/java/phantomjs-driver:phantomjs-driver",
151-
]
151+
],
152+
visibility = [
153+
'//java/server/src/org/openqa/grid/selenium:classes',
154+
],
152155
)

java/server/src/org/openqa/grid/selenium/BUCK

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ java_library(name = 'classes',
1010
deps = [
1111
'//java/client/src/com/thoughtworks/selenium/webdriven:webdriven',
1212
'//java/client/src/org/openqa/selenium:selenium',
13-
'//java/client/src/org/openqa/selenium/chrome:chrome',
14-
'//java/client/src/org/openqa/selenium/firefox:firefox',
15-
'//java/client/src/org/openqa/selenium/remote:remote',
13+
'//java/client/src/org/openqa/selenium:client-combined',
1614
'//java/server/src/org/openqa/grid:grid',
1715
'//java/server/src/org/openqa/selenium/remote/server/log:log',
1816
'//java/server/src/org/openqa/selenium/remote/server:standalone-server-lib',

0 commit comments

Comments
 (0)