Skip to content

Commit

Permalink
[cdp] Add support for CDP v87
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Nov 9, 2020
1 parent 3f61f36 commit 14b9183
Show file tree
Hide file tree
Showing 12 changed files with 10,767 additions and 1 deletion.
36 changes: 36 additions & 0 deletions common/devtools/chromium/v87/BUILD.bazel
@@ -0,0 +1,36 @@
package(
default_visibility = [
"//java/client/src/org/openqa/selenium/devtools:__subpackages__",
"//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",
],
)

0 comments on commit 14b9183

Please sign in to comment.