Path: blob/trunk/third_party/closure/goog/uri/BUILD.bazel
4217 views
load("@rules_closure//closure:defs.bzl", "closure_js_library")
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
closure_js_library(
name = "uri",
srcs = ["uri.js"],
lenient = True,
deps = [
":utils",
"//third_party/closure/goog/array",
"//third_party/closure/goog/asserts",
"//third_party/closure/goog/collections:maps",
"//third_party/closure/goog/string",
"//third_party/closure/goog/structs",
],
)
closure_js_library(
name = "utils",
srcs = ["utils.js"],
lenient = True,
deps = [
"//third_party/closure/goog/array",
"//third_party/closure/goog/asserts",
"//third_party/closure/goog/string",
],
)