File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ load ("//common:browsers.bzl" , "chrome_data" , "firefox_data" )
2
+ load ("//java:browsers.bzl" , "chrome_jvm_flags" , "firefox_jvm_flags" )
3
+ load ("//java:defs.bzl" , "artifact" )
4
+
1
5
filegroup (
2
6
name = "license" ,
3
7
srcs = [
@@ -26,3 +30,19 @@ alias(
26
30
name = "selenium-server-standalone" ,
27
31
actual = "//java/server/src/org/openqa/selenium/grid:selenium_server_deploy.jar" ,
28
32
)
33
+
34
+ java_binary (
35
+ name = "server" ,
36
+ main_class = "org.openqa.selenium.grid.Bootstrap" ,
37
+ runtime_deps = [
38
+ "//java/server/src/org/openqa/selenium/grid" ,
39
+ artifact ("org.slf4j:slf4j-jdk14" ),
40
+ ],
41
+ jvm_flags = chrome_jvm_flags + firefox_jvm_flags ,
42
+ data = chrome_data + firefox_data ,
43
+ args = [
44
+ "standalone" ,
45
+ "--relax-checks" ,
46
+ "true" ,
47
+ ],
48
+ )
You can’t perform that action at this time.
0 commit comments