Skip to content

Commit

Permalink
[devtools] Add v88 (beta) and v89 (canary) versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Nov 30, 2020
1 parent dbd00ca commit 69a1855
Show file tree
Hide file tree
Showing 23 changed files with 22,067 additions and 0 deletions.
37 changes: 37 additions & 0 deletions common/devtools/chromium/v88/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package(
default_visibility = [
"//java/client/src/org/openqa/selenium/devtools:__subpackages__",
"//javascript/node/selenium-webdriver:__pkg__",
"//javascript/node/selenium-webdriver:__pkg__",
"//py:__pkg__",
"//dotnet/src/webdriver:__subpackages__",
],
)

genrule(
name = "browser_protocol",
srcs = [
"browser_protocol.pdl",
],
outs = [
"browser_protocol.json",
],
cmd = "$(location //common/devtools:pdl_to_json) $(location :browser_protocol.pdl) --map_binary_to_string=true $@",
tools = [
"//common/devtools:pdl_to_json",
],
)

genrule(
name = "js_protocol",
srcs = [
"js_protocol.pdl",
],
outs = [
"js_protocol.json",
],
cmd = "$(location //common/devtools:pdl_to_json) $(location :js_protocol.pdl) --map_binary_to_string=true $@",
tools = [
"//common/devtools:pdl_to_json",
],
)
Loading

0 comments on commit 69a1855

Please sign in to comment.