Skip to content

Commit 69a1855

Browse files
committed
[devtools] Add v88 (beta) and v89 (canary) versions
1 parent dbd00ca commit 69a1855

23 files changed

+22067
-0
lines changed
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package(
2+
default_visibility = [
3+
"//java/client/src/org/openqa/selenium/devtools:__subpackages__",
4+
"//javascript/node/selenium-webdriver:__pkg__",
5+
"//javascript/node/selenium-webdriver:__pkg__",
6+
"//py:__pkg__",
7+
"//dotnet/src/webdriver:__subpackages__",
8+
],
9+
)
10+
11+
genrule(
12+
name = "browser_protocol",
13+
srcs = [
14+
"browser_protocol.pdl",
15+
],
16+
outs = [
17+
"browser_protocol.json",
18+
],
19+
cmd = "$(location //common/devtools:pdl_to_json) $(location :browser_protocol.pdl) --map_binary_to_string=true $@",
20+
tools = [
21+
"//common/devtools:pdl_to_json",
22+
],
23+
)
24+
25+
genrule(
26+
name = "js_protocol",
27+
srcs = [
28+
"js_protocol.pdl",
29+
],
30+
outs = [
31+
"js_protocol.json",
32+
],
33+
cmd = "$(location //common/devtools:pdl_to_json) $(location :js_protocol.pdl) --map_binary_to_string=true $@",
34+
tools = [
35+
"//common/devtools:pdl_to_json",
36+
],
37+
)

0 commit comments

Comments
 (0)