From 2a44ef8ec8c419abd49852b873209de3ab742af7 Mon Sep 17 00:00:00 2001 From: Bocete Date: Tue, 21 Jul 2020 17:51:32 -0700 Subject: 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")`](https://github.com/bazelbuild/bazel-skylib/blob/560d7b2359aecb066d81041cb532b82d7354561b/lib/sets.bzl#L17) results in `No such file or directory: 'third_party/bazel_skylib/lib/new_sets.bzl` --- lib/BUILD | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/BUILD b/lib/BUILD index d17caa5..26a6120 100644 --- a/lib/BUILD +++ b/lib/BUILD @@ -38,6 +38,9 @@ bzl_library( bzl_library( name = "sets", srcs = ["sets.bzl"], + deps = [ + ":new_sets", + ], ) bzl_library( -- cgit v1.2.3