Skip to content

Commit ba01ccd

Browse files
committed
[cdp] add support for v97
1 parent f31de8d commit ba01ccd

3 files changed

Lines changed: 11550 additions & 0 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package(
2+
default_visibility = [
3+
"//dotnet/src/webdriver:__subpackages__",
4+
"//java/src/org/openqa/selenium/devtools:__subpackages__",
5+
"//javascript/node/selenium-webdriver:__pkg__",
6+
"//py:__pkg__",
7+
"//rb:__pkg__",
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)