forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowsers.bzl
91 lines (84 loc) · 2.82 KB
/
browsers.bzl
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
headless = select({
"@selenium//common:use_headless_browser": {
"headless": True,
},
"//conditions:default": {},
})
_chromedriver_data = select({
"@selenium//common:use_pinned_linux_chrome": [
"@linux_chromedriver//:chromedriver-js",
],
"@selenium//common:use_pinned_macos_chrome": [
"@mac_chromedriver//:chromedriver-js",
],
# "@selenium//common:use_local_chromedriver": ["@selenium//common:chromedriver-js"],
"//conditions:default": [],
})
_chrome_data = select({
"@selenium//common:use_pinned_linux_chrome": [
"@linux_chrome//:chrome-js",
],
"@selenium//common:use_pinned_macos_chrome": [
"@mac_chrome//:chrome-js",
],
"//conditions:default": [],
}) + _chromedriver_data
chrome = {
"env": select({
"@selenium//common:use_pinned_linux_chrome": {
# "BROWSER_BINARY": "$(location @linux_chrome//:chrome-linux64/chrome)",
# "DRIVER_BINARY": "$(location @linux_chromedriver//:chromedriver)",
"SELENIUM_BROWSER": "chrome",
},
"@selenium//common:use_pinned_macos_chrome": {
"BROWSER_BINARY": "mac_chrome/Chrome.app/Contents/MacOS/Chrome",
"DRIVER_BINARY": "mac_chromedriver/chromedriver",
"SELENIUM_BROWSER": "chrome",
},
"//conditions:default": {
"SELENIUM_BROWSER": "chrome",
},
}),
"data": _chrome_data,
}
_geckodriver_data = select({
"@selenium//common:use_pinned_linux_firefox": [
"@linux_geckodriver//:geckodriver-js",
],
"@selenium//common:use_pinned_macos_firefox": [
"@mac_geckodriver//:geckodriver-js",
],
# "@selenium//common:use_local_chromedriver": ["@selenium//common:chromedriver-js"],
"//conditions:default": [],
})
_firefox_data = select({
"@selenium//common:use_pinned_linux_firefox": [
"@linux_firefox//:firefox-js",
],
"@selenium//common:use_pinned_macos_firefox": [
"@mac_firefox//:firefox-js",
],
"//conditions:default": [],
}) + _geckodriver_data
firefox = {
"env": select({
"@selenium//common:use_pinned_linux_firefox": {
# "BROWSER_BINARY": "$(location @linux_chrome//:chrome-linux64/chrome)",
# "DRIVER_BINARY": "$(location @linux_chromedriver//:chromedriver)",
"SELENIUM_BROWSER": "firefox",
},
"@selenium//common:use_pinned_macos_firefox": {
"BROWSER_BINARY": "mac_firefox/Firefox.app/Contents/MacOS/firefox",
"DRIVER_BINARY": "mac_geckodriver/geckodriver",
"SELENIUM_BROWSER": "firefox",
},
"//conditions:default": {
"SELENIUM_BROWSER": "firefox",
},
}),
"data": _firefox_data,
}
BROWSERS = {
"chrome": chrome,
"firefox": firefox,
}