-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Expand file tree
/
Copy pathbrowsers.bzl
More file actions
129 lines (121 loc) · 4.43 KB
/
browsers.bzl
File metadata and controls
129 lines (121 loc) · 4.43 KB
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
119
120
121
122
123
124
125
126
127
128
129
chromedriver_jvm_flags = select({
"@selenium//common:use_pinned_linux_chrome": [
"-Dwebdriver.chrome.driver=$(location @linux_chromedriver//:chromedriver)",
],
"@selenium//common:use_pinned_macos_chrome": [
"-Dwebdriver.chrome.driver=$(location @mac_chromedriver//:chromedriver)",
],
"//conditions:default": [],
})
chromedriver_beta_jvm_flags = select({
"@selenium//common:use_pinned_linux_chrome": [
"-Dwebdriver.chrome.driver=$(location @linux_beta_chromedriver//:chromedriver)",
],
"@selenium//common:use_pinned_macos_chrome": [
"-Dwebdriver.chrome.driver=$(location @mac_beta_chromedriver//:chromedriver)",
],
"//conditions:default": [],
})
chrome_jvm_flags = select({
"@selenium//common:use_pinned_linux_chrome": [
"-Dwebdriver.chrome.binary=$(location @linux_chrome//:chrome-linux64/chrome)",
],
"@selenium//common:use_pinned_macos_chrome": [
"-Dwebdriver.chrome.binary=$(location @mac_chrome//:Chrome.app)/Contents/MacOS/Chrome",
],
"@selenium//common:use_local_chromedriver": [],
"//conditions:default": [
"-Dselenium.skiptest=false",
],
}) + select({
"@selenium//common:use_headless_browser": [
"-Dwebdriver.headless=true",
],
"//conditions:default": [],
}) + chromedriver_jvm_flags
chrome_beta_jvm_flags = select({
"@selenium//common:use_pinned_linux_chrome": [
"-Dwebdriver.chrome.binary=$(location @linux_beta_chrome//:chrome-linux64/chrome)",
],
"@selenium//common:use_pinned_macos_chrome": [
"-Dwebdriver.chrome.binary=$(location @mac_beta_chrome//:Chrome.app)/Contents/MacOS/Chrome",
],
"@selenium//common:use_local_chromedriver": [],
"//conditions:default": [
"-Dselenium.skiptest=false",
],
}) + select({
"@selenium//common:use_headless_browser": [
"-Dwebdriver.headless=true",
],
"//conditions:default": [],
}) + chromedriver_beta_jvm_flags
edgedriver_jvm_flags = select({
"@selenium//common:use_pinned_linux_edge": [
"-Dwebdriver.edge.driver=$(location @linux_edgedriver//:msedgedriver)",
],
"@selenium//common:use_pinned_macos_edge": [
"-Dwebdriver.edge.driver=$(location @mac_edgedriver//:msedgedriver)",
],
"//conditions:default": [],
})
edge_jvm_flags = select({
"@selenium//common:use_pinned_linux_edge": [
"-Dwebdriver.edge.binary=$(location @linux_edge//:opt/microsoft/msedge/microsoft-edge)",
],
"@selenium//common:use_pinned_macos_edge": [
"-Dwebdriver.edge.binary=\"$(location @mac_edge//:Edge.app)/Contents/MacOS/Microsoft Edge\"",
],
"@selenium//common:use_local_msedgedriver": [],
"//conditions:default": [
"-Dselenium.skiptest=false",
],
}) + select({
"@selenium//common:use_headless_browser": [
"-Dwebdriver.headless=true",
],
"//conditions:default": [],
}) + edgedriver_jvm_flags
geckodriver_jvm_flags = select({
"@selenium//common:use_pinned_linux_firefox": [
"-Dwebdriver.gecko.driver=$(location @linux_geckodriver//:geckodriver)",
],
"@selenium//common:use_pinned_macos_firefox": [
"-Dwebdriver.gecko.driver=$(location @mac_geckodriver//:geckodriver)",
],
"//conditions:default": [],
})
firefox_jvm_flags = select({
"@selenium//common:use_pinned_linux_firefox": [
"-Dwebdriver.firefox.bin=$(location @linux_firefox//:firefox/firefox)",
],
"@selenium//common:use_pinned_macos_firefox": [
"-Dwebdriver.firefox.bin=$(location @mac_firefox//:Firefox.app)/Contents/MacOS/firefox",
],
"@selenium//common:use_local_geckodriver": [],
"//conditions:default": [
"-Dselenium.skiptest=false",
],
}) + select({
"@selenium//common:use_headless_browser": [
"-Dwebdriver.headless=true",
],
"//conditions:default": [],
}) + geckodriver_jvm_flags
firefox_beta_jvm_flags = select({
"@selenium//common:use_pinned_linux_firefox": [
"-Dwebdriver.firefox.bin=$(location @linux_beta_firefox//:firefox/firefox)",
],
"@selenium//common:use_pinned_macos_firefox": [
"-Dwebdriver.firefox.bin=$(location @mac_beta_firefox//:Firefox.app)/Contents/MacOS/firefox",
],
"@selenium//common:use_local_geckodriver": [],
"//conditions:default": [
"-Dselenium.skiptest=false",
],
}) + select({
"@selenium//common:use_headless_browser": [
"-Dwebdriver.headless=true",
],
"//conditions:default": [],
}) + geckodriver_jvm_flags