Skip to content

Commit

Permalink
Remove an unused alias from the buckconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jun 25, 2016
1 parent 2e2ab01 commit 612e2b0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .buckconfig
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
rc-server = //java/server/src/org/openqa/selenium/server:rc
selenium-java = //java/client/src/org/openqa/selenium:selenium-java

se3-server = //java/server/src/org/openqa/selenium/remote/server:standalone-server
selenium-server-standalone = //java/server/src/org/openqa/grid/selenium:selenium

# Tests
firefox-test = //java/client/test/org/openqa/selenium/firefox:test-synthesized
Expand Down
26 changes: 8 additions & 18 deletions java/server/src/org/openqa/selenium/remote/server/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ java_library(name = 'sessions',
],
visibility = [
'//java/server/src/com/thoughtworks/selenium/webdriven:rc-emulation-servlet',
'//java/server/src/org/openqa/selenium/server:server',
'//java/server/test/...',
],
)
Expand Down Expand Up @@ -58,7 +57,6 @@ java_library(name = 'server',
'//java/server/src/org/openqa/grid:grid',
'//java/server/src/org/openqa/grid/selenium:classes',
'//java/server/src/com/thoughtworks/selenium/webdriven:rc-emulation-servlet',
'//java/server/src/org/openqa/selenium/server:server',
'//java/server/test/...',
],
)
Expand All @@ -85,30 +83,22 @@ java_library(name = 'standalone-server-lib',
deps = [
':server',
':sessions',
'//java/client/src/org/openqa/selenium/chrome:chrome',
'//java/client/src/org/openqa/selenium/edge:edge',
'//java/client/src/org/openqa/selenium/firefox:firefox',
'//java/client/src/org/openqa/selenium/ie:ie',
'//java/client/src/org/openqa/selenium/opera:opera',
'//java/client/src/org/openqa/selenium/remote:remote',
'//java/client/src/org/openqa/selenium/safari:safari',
'//java/server/src/org/openqa/grid:grid',
'//third_party/java/beust:jcommander',
'//third_party/java/htmlunit:htmlunit-driver',
'//third_party/java/jetty:jetty',
'//third_party/java/phantomjs-driver:phantomjs-driver',
'//third_party/java/servlet:servlet-api',
],
visibility = [
'//java/server/src/org/openqa/grid/selenium:classes',
'//java/server/test/org/openqa/grid/e2e:tests',
],
)

java_binary(name = 'standalone-server',
main_class = 'org.openqa.selenium.remote.server.SeleniumServer',
deps = [
':standalone-server-lib',
'//java/client/src/org/openqa/selenium/chrome:chrome',
'//java/client/src/org/openqa/selenium/edge:edge',
'//java/client/src/org/openqa/selenium/firefox:firefox',
'//java/client/src/org/openqa/selenium/ie:ie',
'//java/client/src/org/openqa/selenium/opera:opera',
'//java/client/src/org/openqa/selenium/safari:safari',
'//third_party/java/phantomjs-driver:phantomjs-driver',
'//third_party/java/htmlunit:htmlunit-driver',
'//java/server/src/com/thoughtworks/selenium/webdriven:rc-emulation-servlet',
],
)
2 changes: 1 addition & 1 deletion third_party/java/phantomjs-driver/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ prebuilt_jar(name = 'phantomjs-driver',
visibility = [
'//java/client/src/org/openqa/selenium:client-combined',
'//java/client/test/org/openqa/selenium/testing/drivers:drivers',
'//java/server/src/org/openqa/selenium/remote/server:standalone-server',
'//java/server/src/org/openqa/selenium/remote/server:standalone-server-lib',
],
)

0 comments on commit 612e2b0

Please sign in to comment.