-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
/
BUILD.bazel
71 lines (62 loc) · 1.49 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
load("@com_github_bazelbuild_buildtools//buildifier:def.bzl", "buildifier")
load("//common:browsers.bzl", "chrome_data", "firefox_data")
load("//java:browsers.bzl", "chrome_jvm_flags", "firefox_jvm_flags")
load("//java:defs.bzl", "artifact")
filegroup(
name = "license",
srcs = [
"LICENSE",
"NOTICE",
],
visibility = ["//visibility:public"],
)
alias(
name = "grid",
actual = "//java/src/org/openqa/selenium/grid:executable-grid",
)
alias(
name = "pinned-grid",
actual = "//java/src/org/openqa/selenium/grid:pinned-grid",
)
alias(
name = "debug-server",
actual = "//java/test/org/openqa/selenium/environment:appserver",
)
alias(
name = "calcdeps",
actual = "//javascript/atoms:deps",
)
alias(
name = "selenium-server-standalone",
actual = "//java/src/org/openqa/selenium/grid:selenium_server_deploy.jar",
)
java_binary(
name = "server",
args = [
"standalone",
"--relax-checks",
"true",
],
data = chrome_data + firefox_data,
jvm_flags = chrome_jvm_flags + firefox_jvm_flags,
main_class = "org.openqa.selenium.grid.Bootstrap",
runtime_deps = [
"//java/src/org/openqa/selenium/grid",
artifact("org.slf4j:slf4j-jdk14"),
],
)
platform(
name = "rosetta",
constraint_values = [
"@platforms//os:osx",
"@platforms//cpu:x86_64",
],
)
buildifier(
name = "buildifier",
lint_mode = "fix",
mode = "fix",
tags = [
"manual",
],
)