Skip to content

Commit c7f3fae

Browse files
committed
[devtools] Add v90 (beta) version 90.0.4430.64
1 parent 562a31b commit c7f3fae

File tree

3 files changed

+10764
-0
lines changed

3 files changed

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

0 commit comments

Comments
 (0)