Add `new_sets` as a dep of `sets` bzl_library (#253)

Without this change, evaluating bzl with strict dependencies results in an error.

[`load(":new_sets.bzl", _sets = "sets")`](560d7b2359/lib/sets.bzl (L17)) results in `No such file or directory: 'third_party/bazel_skylib/lib/new_sets.bzl`
This commit is contained in:
Bocete 2020-07-21 17:51:32 -07:00 committed by GitHub
parent 8f3151fb4a
commit 2a44ef8ec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -38,6 +38,9 @@ bzl_library(
bzl_library(
name = "sets",
srcs = ["sets.bzl"],
deps = [
":new_sets",
],
)
bzl_library(