2024-03-29 14:30:22 -07:00
|
|
|
workspace(name = "selenium")
|
2018-11-25 13:21:40 +00:00
|
|
|
|
2019-04-30 11:18:59 -07:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
|
|
2024-03-29 14:30:22 -07:00
|
|
|
# rules_closure are not published to BCR.
|
2019-05-05 14:49:34 -07:00
|
|
|
|
2019-08-19 16:07:45 -07:00
|
|
|
http_archive(
|
2020-11-10 12:28:55 +00:00
|
|
|
name = "io_bazel_rules_closure",
|
2025-03-06 10:29:02 +00:00
|
|
|
integrity = "sha256-lJjlc2jvuCuYXbHtQmp2fL8boDmP167WMvw5CGVOGx4=",
|
2024-12-12 13:40:50 +00:00
|
|
|
strip_prefix = "rules_closure-0.12.0",
|
|
|
|
|
url = "https://github.com/bazelbuild/rules_closure/archive/refs/tags/0.12.0.tar.gz",
|
2019-08-07 14:55:51 +03:00
|
|
|
)
|
|
|
|
|
|
2020-11-10 12:28:55 +00:00
|
|
|
load("@io_bazel_rules_closure//closure:repositories.bzl", "rules_closure_dependencies", "rules_closure_toolchains")
|
2019-11-12 14:41:19 +00:00
|
|
|
|
2024-04-26 12:41:58 +10:00
|
|
|
rules_closure_dependencies(
|
|
|
|
|
omit_rules_java = True,
|
|
|
|
|
omit_rules_proto = True,
|
|
|
|
|
omit_rules_python = True,
|
|
|
|
|
)
|
2019-08-07 14:55:51 +03:00
|
|
|
|
2020-11-10 12:28:55 +00:00
|
|
|
rules_closure_toolchains()
|