Skip to content

Commit

Permalink
fixing buck build
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Mar 15, 2016
1 parent d57dcdc commit bfbe973
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
1 change: 1 addition & 0 deletions java/server/src/org/openqa/grid/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ java_library(name = 'grid',
'//third_party/java/beust:jcommander',
],
visibility = [
'//java/server/src/org/openqa/selenium/remote/server:standalone-server-lib',
'//java/server/src/org/openqa/grid/selenium:classes',
'//java/server/test/org/openqa/grid/...',
],
Expand Down
5 changes: 3 additions & 2 deletions java/server/src/org/openqa/grid/selenium/BUCK
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
java_binary(name = 'selenium',
main_class = 'org.openqa.grid.selenium.GridLauncher',
main_class = 'org.openqa.grid.selenium.GridLauncherV3',
deps = [
':classes',
],
Expand All @@ -16,10 +16,11 @@ java_library(name = 'classes',
'//java/server/src/org/openqa/grid:grid',
'//java/server/src/org/openqa/selenium/remote/server/log:log',
'//java/server/src/org/openqa/selenium/remote/server:standalone-server-lib',
'//java/server/src/org/openqa/selenium/server:server',
'//java/server/src/org/openqa/selenium/remote/server:server',
'//third_party/java/gson:gson',
'//third_party/java/guava:guava',
'//third_party/java/servlet:servlet-api',
'//third_party/java/beust:jcommander',
],
visibility = [
'//java/server/test/org/openqa/grid/e2e:tests',
Expand Down
3 changes: 2 additions & 1 deletion java/server/src/org/openqa/selenium/remote/server/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ java_library(name = 'server',
],
visibility = [
'//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/com/thoughtworks/selenium/webdriven:webdriven',
Expand Down Expand Up @@ -89,7 +90,7 @@ java_library(name = 'standalone-server-lib',
':server',
':sessions',
'//java/client/src/org/openqa/selenium/remote:api',
'//java/server/src/org/openqa/grid',
'//java/server/src/org/openqa/grid:grid',
'//third_party/java/beust:jcommander',
'//third_party/java/jetty:jetty',
'//third_party/java/servlet:servlet-api',
Expand Down
2 changes: 2 additions & 0 deletions third_party/java/beust/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ prebuilt_jar(
binary_jar = 'jcommander-1.48.jar',
source_jar = 'jcommander-1.48-sources.jar',
visibility = [
'//java/server/src/org/openqa/grid:grid',
'//java/server/src/org/openqa/grid/selenium:classes',
'//java/server/src/org/openqa/selenium/remote/server:standalone-server-lib',
'//third_party/java/testng:testng'
],
Expand Down
11 changes: 11 additions & 0 deletions third_party/third_party.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

0 comments on commit bfbe973

Please sign in to comment.