forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
118 lines (109 loc) · 2.76 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
load("@crates//:defs.bzl", "all_crate_deps")
load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_library", "rust_test", "rust_test_suite")
# We want the release versions of Selenium to include the prebuilt
# binaries, but if we're doing day-to-day dev work, then we should
# use a local build, unless on we're on Windows, where for some
# reason we're not able to build locally.
#
# We tag the compiled versions as `manual` so that when we do a
# `bazel build //...` we don't do any additional work
# Start with the variants for each platform
alias(
name = "selenium-manager-windows",
actual = select({
"//common:windows": ":selenium-manager",
"//conditions:default": "//common/manager:windows/selenium-manager.exe",
}),
tags = [
"manual",
],
visibility = [
"//common/manager:__pkg__",
],
)
alias(
name = "selenium-manager-macos",
actual = select({
"//common:macos": ":selenium-manager",
"//conditions:default": "//common/manager:macos/selenium-manager",
}),
tags = [
"manual",
],
visibility = [
"//common/manager:__pkg__",
],
)
alias(
name = "selenium-manager-linux",
actual = select({
"//common:linux": ":selenium-manager",
"//conditions:default": "//common/manager:linux/selenium-manager",
}),
tags = [
"manual",
],
visibility = [
"//common/manager:__pkg__",
],
)
filegroup(
name = "selenium-manager-dev",
srcs = [
":selenium-manager-linux",
":selenium-manager-macos",
":selenium-manager-windows",
],
tags = [
"manual",
],
visibility = [
"//common/manager:__subpackages__",
],
)
rust_binary(
# Yes, this name is very similar to the library. Note the dash
# instead of an underscore
name = "selenium-manager",
srcs = ["src/main.rs"],
edition = "2021",
visibility = ["//visibility:public"],
deps = [
":selenium_manager",
] + all_crate_deps(normal = True),
)
rust_library(
# The name here is used as the crate name
name = "selenium_manager",
srcs = glob(
["src/**/*.rs"],
exclude = ["main.rs"],
),
edition = "2021",
deps = all_crate_deps(normal = True),
)
rust_test(
name = "unit",
size = "small",
srcs = glob(["src/**/*.rs"]),
crate = ":selenium_manager",
tags = ["no-sandbox"],
)
rust_test_suite(
name = "integration",
size = "small",
srcs = glob(["tests/**/*_tests.rs"]),
data = [
"tests/common.rs",
":selenium-manager",
],
edition = "2021",
tags = [
"no-sandbox",
"requires-network",
],
deps = [":selenium_manager"] + all_crate_deps(
normal = True,
normal_dev = True,
),
)