Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/asserts/BUILD.bazel
4058 views
load("@rules_closure//closure:defs.bzl", "closure_js_library")

package(default_visibility = ["//visibility:public"])

licenses(["notice"])

closure_js_library(
    name = "asserts",
    srcs = ["asserts.js"],
    lenient = True,
    deps = [
        "//third_party/closure/goog/debug:error",
        "//third_party/closure/goog/dom:nodetype",
        "//third_party/closure/goog/utils",
    ],
)

closure_js_library(
    name = "dom",
    srcs = ["dom.js"],
    lenient = True,
    deps = [
        ":asserts",
        "//third_party/closure/goog/dom:element",
        "//third_party/closure/goog/dom:tagname",
        "//third_party/closure/goog/utils",
    ],
)